tags:

views:

27

answers:

1

$("#hastable").delay(2000).load("tbl_clients.php?page="); It is not working for me.

But otherwise all effect delay successfully for this .delay() function like .hide(),.show()

A: 

Not sure why it's not working for you, but here's an alternative to jQuery's delay function.

setTimeout(function(){
     $("#hastable").load("tbl_clients.php?page=");
}, 2000);
Brandon Boone