Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 13th, 2013  |  syntax: None  |  size: 0.34 KB  |  hits: 33  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. function testFunction(ctrl)
  2. {
  3.                 alert(ctrl.value);
  4. }
  5.        
  6. <input id="text1" value="value" />
  7.  
  8. <input type="submit" onclick="testFunction(text1)" value="Click" />
  9.        
  10. function testFunction(ctrl)
  11. {
  12.     var obj = document.getElementById(ctrl);
  13.     alert(obj.value);
  14. }
  15.  
  16. <input type="submit" onclick="testFunction('text1')" value="Click" />