Jump to content

Login Button Element Name?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
3 replies to this topic

#1
CuzImAwesome

CuzImAwesome

    Newbie

  • Members
  • PipPip
  • 25 posts
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! :)

#2
Alexander

Alexander

    It's Science!

  • Moderators
  • 4,120 posts
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.

#3
CuzImAwesome

CuzImAwesome

    Newbie

  • Members
  • PipPip
  • 25 posts
Alrighty, Thanks anyways!

#4
wim DC

wim DC

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,084 posts
Can go for getElementByTagName('input');

Loop trough the bunch of elements you get back and see if their value equals "Log in".