• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Click on webpage

mahaveer somani

New Member
Sir,


I have get this line from html of a webpage.

<LI id=sendSMS class=active><A href="javascript:loadSMSPage('sendSMS');">Send SMS</A></LI>

i want to click on "sendsms" through internet explorer.

Please suggest me.


Thanks
 

It depends also on the webpage, not on a single codeline.
Maybe it is its parent to click …

See within element "on*" properties if there is some "onclick" active …
 
Code:
<DIV class=mainmenu>
<DIV style="DISPLAY: block" id=smsMENU class=wrap>
<UL class=ovh>
<LI id=sdash class=home onclick="javascript:loadSMSPage('sdash');"><I class="chati homei"><EM class=ei></EM></I></LI>
<LI id=sendSMS class=active><A href="javascript:loadSMSPage('sendSMS');">Send SMS</A></LI>
<LI id=langSMS><A href="javascript:loadSMSPage('langSMS');">Language SMS</A></LI>
<LI id=groupSMS><A href="javascript:loadSMSPage('groupSMS');">Group SMS</A></LI>
in this code there is only one onclick but it is not related to ID which i want to click. so what i do?
 
Back
Top