Created
November 30, 2015 02:24
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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