Jump to content

onchange to switch span font color.


turpentyne

Recommended Posts

I have a basic javascript to change the text in a span, based on a select dropdown. THe basic script worked, but when I tried adding in an if statement to make it change to the selected color only if the dropdown is a value greater than the default value. I tried  != '0', != null and != ''. Still nothing.

 

<script>
function highlighter(nameit,adderup) {
var e = document.getElementById(adderup);
var strUser = e.options[e.selectedIndex].value;
if (stringUser != '') {

elementtochange = document.getElementById(nameit);
elementtochange.style.color = "orange";
} else {
	elementtochange = document.getElementById(nameit);
elementtochange.style.color = "black";
	}

}
</script>

<!-- looped dropdowns, from php and mysql -->
<select style="width:70px;" name="participantqty[<?= $c_row['workshop_id'] ?>]" id="participantqty<?= $c_row['workshop_id'] ?>"   onChange="highlighter('selectedclass<?= $c_row['workshop_id'] ?>', 'participantqty<?= $c_row['workshop_id'] ?>')">
<option value="">select </option>
  <option value="1"  width=45>1 </option>
  <option value="2"  width=45>2 </option>


</select>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.