Thursday, May 8, 2014

Refresh the current web page using jQuery

  1. <script type="text/javascript">
  2. $(function() {
  3. $('#btnClick').click(function() {
  4. document.location.reload();
  5. })
  6. })
  7. </script>

No comments :

Post a Comment