Advertisement
Guest User

Untitled

a guest
Mar 8th, 2012
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function() {
  7.    
  8.     $("#testButton").on("click", function() {
  9.         var testString = $("#testString").val();
  10.         document.location.href = 'test.cfm?input='+escape(testString);
  11.     });
  12. });
  13. </script>
  14. </head>
  15. <body>
  16.  
  17. <input type="text" id="testString" placeholder="Enter test string">
  18. <button id="testButton">Test</button>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement