javascript - disable background in jquery popup - Stack Overflow

OK, So i have this snippet here;whenever the popup es up, I either want to disable the background,

OK, So i have this snippet / here;

whenever the popup es up, I either want to disable the background, so that users can't click on another language until they close the first popup, or how would I acplish that, whenever users click on second language, the first popup disappears and its corresponding popup appears.

OK, So i have this snippet http://jsfiddle/8vFEd/ here;

whenever the popup es up, I either want to disable the background, so that users can't click on another language until they close the first popup, or how would I acplish that, whenever users click on second language, the first popup disappears and its corresponding popup appears.

Share Improve this question edited Aug 25, 2011 at 6:35 Wasim Karani 8,86410 gold badges57 silver badges100 bronze badges asked Aug 25, 2011 at 5:19 MikeMike 3,41811 gold badges47 silver badges80 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

My suggestion would be to put an overlay over the background which will "catch" clicks through to the rest of the page. Add the following to your $('.prop a').click() function, before the <div class='lang'> append call:

$("body").append('<div class="modalOverlay">');

and this to your css:

.modalOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.3); /* black semi-transparent */
}

Then in your code for handling "close" clicks, remove this .modalOverlay from the DOM. Remember to add the overlay before your popup window so it sits behind the window (or add "z-index: 5" to your overlay css and "z-index: 6" to your popup css)

I would also suggest modifying your .lang css rule to be position: absolute; or fixed instead of relative.

Add this at beginning of your onclick

$(".lang").remove();

That will remove or clear the div with lang class before repainting the DOM with a new one.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743639569a4482731.html

相关推荐

  • javascript - disable background in jquery popup - Stack Overflow

    OK, So i have this snippet here;whenever the popup es up, I either want to disable the background,

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信