How to call a jquery function onload with some delay?
I want to call a function like this on load with some delay
$(\".sample\").live(\'click\',function(
Try to use Timer Plugin
$(this).oneTime(1000, function() { // some action here });