<!doctype html> <html lang="kr"> <head> <meta charset="utf-8"> <title>demo</title> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> <script> $(document).on("click","button[name=reload]",function(){ location.reload(); }); </script> </head> <body> <button name="reload">새로고침</button> </body> </html>