Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <script>
  2. $(window).load(function(){
  3. location.reload(true);
  4. });
  5.  
  6. $(document).ready(function(){
  7. $("#cancelButtonID").click(function(){
  8. //this code executes when your cancel button is clicked
  9. location.reload(true);
  10. });
  11. });
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement