Answers for "refresh the page using jquery"

1

how to completely reload page in jquery

// reload page from cache:
location.reload();
// reload page from server:
location.reload(true);
Posted by: Guest on September-15-2020
2

refresh div jquery

$("#mydiv").load(location.href + " #mydiv");

//this is actualy not so nice but it does the job.
Posted by: Guest on March-24-2020

Code answers related to "refresh the page using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language