Hi is it possible to disable window scrolling without using overflow:hidden; when i\'m hover an element?
overflow:hidden;
i tryed :
$(\'.chat-content\').
tfe answered this question in another post on StackOverflow: Answered
Another method would be to use:
$(document).bind("touchmove",function(event){ event.preventDefault(); });
But it may prevent some of the jquery mobile functionality from working properly.