I have a pop up screen.
After clicking the Button, I want to show my popup screen.
But problem is that, whenever user open the pop screen, it displays But again user able to press button.
I need to disable button (I do this).But user also able to scroll list and while scrolling popup screen goes up and will not display.
I thing user will not able to scroll while pop up screen in front of user.
User click any where in screen it hide the popup screen. Here is my update code. http://jsfiddle.net/ravi1989/HesVd/10/
$("#addbuttons").on("click", "a", function() {
if ($(this).attr("id") == "Add") {
alert("fdfg")
$('#addbuttons').prop('disabled', true).addClass('ui-disabled');
$('.row').prop('disabled', true).addClass('ui-disabled');
}
});