NetTalk Central
The Rest Of NetTalk => The Rest - Ask For Help => Topic started by: Trevor Dickson on April 02, 2008, 05:47:49 AM
-
Hi There
Im hoping someone can help me with a problem I've encountered.
My brief is to build a program that can be run client-side to automate some web tasks. So on loading, the application will navigate to the webpage in question and wait. The user then clicks a button which scans through all the elements in the html document and finds the ones matching a specific ID, which it then iterates through and simulates a mouse click on them.
The code works pretty well In Nettalk opening the site, retrieving the code and the searching through it and works well on buttons, forms etc on most sites, but won't trigger this event below...
And here's the html segment that's relevant:
Code Block
<a style="cursor: pointer;" onclick="fbjs_sandbox.instances.a2437228683.bootstrap();return fbjs_dom.eventHandler.call([fbjs_dom.get_instance(this,2437228683),function(a2437228683_event) {a2437228683_doajax('diggComment3432030', 'http://74.86.142.204/~asd/asd/asd.php?cid=3432030&up=1&sd=0&poster=749701787&herd=1', '')},2437228683],new fbjs_event(event));return true">
<img src="
The code works pretty well on buttons, forms etc, but won't trigger this event...">http://x.x.x.x/%xx/xx/images/thumbsup.jpg</A< A>>" height="30" width="30"></a><br>
Any suggestions would be appreciated as I can't get it to trigger the onclick event for that code segment.
Thanks
-
Hi,
almost certainly the javascript is triggering an asyncronous GET. So you'd do a well-formed GET to simulate this. Probably with the header tweaked.
The best way to see it is to use a packet sniffer (Ethereal etc) to "see" the request if you do it manually. Pay attention to the headers.
Cheers
Bruce
-
JAT -
I may be missing the point, but how about putting all that code in a function and just call the function from the OnClick. That way anything that needed to could call the function rather than pushing an Onclick event.
Chris C.
-
You're thinking web Server Chris, whereas in this case it's web client...
cheers
Bruce