Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a button tag as supposed to and input tag, which has different text to what I what its value to do, see below.

<button value="<%=RS("field1")%>" name="change" id="change">Change</button>

This works dandy in Firefox, but in IE.. dun,dun,dunnnn... the value of the button comes back as the word "change" which is meant to be the text the button displays.

I would usually just use and input tag but I think I can only use a button tag

Is there anyway to get round this?

share|improve this question

5 Answers

From w3schools.com:

Important: If you use the button element in an HTML form, different browsers will submit different values. Internet Explorer will submit the text between the <button> and </button> tags, while other browsers will submit the content of the value attribute. Use the input element to create buttons in an HTML form.

Therefore, What you should do is <input type="button" />

share|improve this answer
Unless he wants to add HTML to the button, which you can't do with <input type="button">. – Andy E Dec 15 '10 at 13:43
I don't think that the 'input' tag you can have a different value to the actual text, that was my issue – Hayley Dec 15 '10 at 13:44
Thanks Andy and Hayley. Yes, the input tag does NOT allow different button text and value. The issue is, you can't do this in HTML and support IE at the same time. period. You can add a javascript onclick event to modify the value before submission, or use one of the other suggestions in the answers here. An HTML only solution to have different text and value for a button will not support IE. – Faisal Dec 16 '10 at 7:37

What I've generally done in situations like this is to embed the information in the name attribute so you'd have

<button name="change:<%=RS("field1")%>" id="change:<%=RS("field1")%>">Change</button>

then use the server-side code to discard the returned value and then decompose the name back into a {name, value) pair.

(Note that your "id"s need to be unique anyway.)

share|improve this answer

As far as I know there is no way around it. It's simply the way IE handles the button tag, it will send the text between the opening and closing tag.

Considering you can't use a normal input tag for the button, how about using a hidden field to convey the method you want to use?

<form action="somepage" method="POST">
    <!-- some fields here -->
    <input type="hidden" name="action" value="<%=RS("field1")%>" />
    <button name="change" id="change">Change</button>
</form>
share|improve this answer
I put a hidden field inplace, but the button is in a loop, so that each button has the value of 'rs("field")', I found with the hiddenfield the output would be 'firstloopvalue, secondloopvalue' etc.. – Hayley Dec 15 '10 at 13:50
Well, the problem is with the button element, it's simply a known issue that it's being handled differently. So why can't you use an input? – Erik van Brakel Dec 15 '10 at 14:33

IE8 does send the value, so it's IE7 only (probably 6 too but who cares) problem.

Anyhow, one possible trick is to put the value as part of the text, hidden, then in the button click event (using JavaScript) change the button text to that value.

The final result would look like this:

<button value="<%=RS("field1")%>" name="change" onclick="this.innerHTML = this.childNodes[1].innerHTML;"><span>Change</span><span style="display: none;"><%=RS("field1")%></span></button>

Also, as you have this in loop, don't set the ID to avoid having more than one element sharing the same ID - it's invalid and if you need the ID for some reason, append something unique to it in each iteration.

share|improve this answer

Seems to me the desired value is always in the button "value" attribute (since that's the value the other browsers submit), so why not simply:

<button ... onclick="this.innerHTML=this.value;" ... >
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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