Hey All! If possible, could anyone answer this question: What is the login button (for this website) element name? I'm making a login system using "GetElementById" in visual basic 2008.
Cheers! :)
Login Button Element Name?
Started by CuzImAwesome, Oct 25 2010 08:30 PM
3 replies to this topic
#1
Posted 25 October 2010 - 08:30 PM
|
|
|
#2
Posted 25 October 2010 - 09:36 PM
It has no ID, only a class:
<input type="submit" class="loginbutton" tabindex="104" value="Log in" title="Enter your username and password in the boxes provided to login, or click the 'register' button to create a profile for yourself." accesskey="s" />
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
#3
Posted 26 October 2010 - 04:49 PM
Alrighty, Thanks anyways!
#4
Posted 27 October 2010 - 07:14 AM
Can go for getElementByTagName('input');
Loop trough the bunch of elements you get back and see if their value equals "Log in".
Loop trough the bunch of elements you get back and see if their value equals "Log in".


Sign In
Create Account


Back to top









