PDA

View Full Version : [SOLVED] JavaScript (and perl...)



StOoZ
January 1st, 2010, 06:47 PM
I have a HTML, which has a javascript button:

<p><input type="submit" id="submitButton" value="Submit" /></p></
form><script language="Javascript">runMeAndFinish();</script></body></
html>"

in order to emulate the 'runMeAndFinish()' function call, I want to see the request the JS is building when I click this button, any idea how to do it???

thanks,

korvirlol
January 1st, 2010, 07:46 PM
<input type = 'button' value = 'Click me' onclick = 'runMeAndFinish();'>

StOoZ
January 5th, 2010, 09:56 AM
thanks,
Anyhow I managed to solved it in a different way.

myrtle1908
January 6th, 2010, 04:55 AM
I want to see the request the JS is building when I click this button, any idea how to do it???

http://www.getfirebug.com

StOoZ
January 26th, 2010, 08:52 AM
http://www.getfirebug.com
Thanks. used something similar to this,with chrome.