Skip to content

Instantly share code, notes, and snippets.

@radar
Created November 30, 2015 02:24
Show Gist options
  • Save radar/df9ab92c6c0d1fb6f255 to your computer and use it in GitHub Desktop.
Save radar/df9ab92c6c0d1fb6f255 to your computer and use it in GitHub Desktop.
trying to use jquery to change the starting bid field to readonly if fixed price is selected from the drop down menu
<script>
$("format").change(function () {
if(document.getElementById('format').selected=='Fixed price')
{
// do something
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment