Some times functions under the method " $(document).ready(function()" doesnot get called .You can use the delay as below and call the events.
setTimeout(function()
{
$(document).ready(function(){
$("#downloads").click(function (e) {
alert('test');
});
});},1000);
No comments:
Post a Comment