auto click link on a website

nishakhan

New member
Joined
Mar 31, 2010
Messages
1
Programming Experience
Beginner
hi anybody help,

i want to autologin into a clients website then i ve to click the link on the second page.
i ve tried like this.. but it does not work.. any help in vb.net is also not at alll a prob.. i just need the solution at all.
HTML:
<html>

<head>

<script language="javascript">

function ClickLink() 

{ 
   var openWindow = window.open("http://www.bing.com/"); 
    openwindow.document.getElementById("sb_feedback").click(); 
 
}
 
</script>
 
</head>
 
<body> 

<a href="javascript:ClickLink()">click me</a>
 
</body>
 
</html>

here i ve used bing jast as an example.. expecting replies soon.

thanks in advance guys.
 
To be able to help you, I need the link to the client's website in the JavaScript, not a link to bing. I don't understand what you are asking.
 
Back
Top