Refreshing a page implicitly without the user noticing
I was wondering if there is a jquery way to implicitly refresh a page without the page blinking,
i know the common way is like this below. Regards
- <script>
$(document).ready(function(){
$("#divid").click(function(){
location.reload(true);
});
});
</script>