a
Haml
code posted
created at 14 Apr 03:07, updated at 14 Apr 03:08
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <script src="//code.jquery.com/jquery-1.11.0.min.js"></script> <script type="text/javascript"> alert("HEAD ALERT 경고창"); window.onload = function(){ alert("window.onload ALERT 경고창"); } $(document).ready(function(){ alert("$(document).ready ALERT 경고창"); }) </script> </head> <body> <script type="text/javascript"> alert("BODY ALERT 경고창"); </script> </body> </html> |
477 Bytes in 2 ms with coderay