I have this problem:

On this website: http://www.azercell.com/WebModule1/mainservlet?cmnd=sms&lang=en

I'm trying the following script, it works fine with C#, but javascript nope, why?

javascript:(function() { 
    document.getElementById('login').setAttribute('value', 'test'); })()
link|improve this question

Where and when do you want to do this? Onclick of something? – mplungjan Nov 6 '11 at 19:23
feedback

2 Answers

up vote -1 down vote accepted

Try this:

javascript:(function() { 
   document.getElementById('login').value="test";
}
link|improve this answer
1  
As far as I can tell, this answer is completely incorrect... also, please stop reading w3schools as per w3fools.com – Neil Nov 6 '11 at 19:38
Sorry but please explain at least why this answer is incorrect... I just wrote down what i found in that piece of documentation... What are you basing your comment on? – andreapier Nov 6 '11 at 20:30
1  
DOM elements in JavaScript do have a setAttribute() method, but your suggestion of using the value property is a good one. – Tim Down Nov 7 '11 at 0:18
Thanks, i edited the answer – andreapier Nov 7 '11 at 8:02
feedback

There are two main problems.

  1. The script doesn't appear in the page.
  2. While there is an element with name="value", there is no element with id="value". (So getElementById('value') won't return an element except in IE 7 and earlier (which is buggy) and rendering modes that try to be compatible with those bugs)

Give the element you want to target a suitable id attribute.

link|improve this answer
As for point 1, it looks as if this is a bookmarklet. – Neil Nov 6 '11 at 19:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.