Hi,
I need to listen to scroll event of iFrame.
I have a div element which hold an iFrame.
I tried with following
$("#myiFrame").live("mouseout",function(){
alert("1");
});
$("#myiFrame").live("mouseup",function(){
alert("2");
});
$("#myiFrame").live('scroll', function(){
alert("3");
});
$("#myiFrame").scroll(function(){
alert("4");
});
$(document).on("scroll",function(){
alert("5");
});
I am trying to do it in iOS. Nothing works
Please share inputs.
Thanks in advance.
Regards,