Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.javascript > #28928

Re: trying to disable a text input field when a particular select list option is selected in a select field but this code has no effect

Newsgroups comp.lang.javascript
Date 2015-11-30 04:11 -0800
References <72249e91-27c8-4895-ae4d-f4d974e1b85d@googlegroups.com> <n3h27k$52k$1@news.albasani.net>
Message-ID <647cdcc7-b9b8-40d4-acec-598dadd20c02@googlegroups.com> (permalink)
Subject Re: trying to disable a text input field when a particular select list option is selected in a select field but this code has no effect
From fugee279@gmail.com

Show all headers | View raw


There's no error in the console This code doesn't work either The page loads ok, but the second_field never gets disabled

<script>
$(document).ready(function () {
  $('#first_field').change(function(e) 
   {
    if (e.target.value=('Fixed price') {$("#second_field").prop("disabled", true); }
  })
})
</script>

Back to comp.lang.javascript | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

trying to disable a text input field when a particular select list option is selected in a select field but this code has no effect fugee279@gmail.com - 2015-11-29 20:23 -0800
  Re: trying to disable a text input field when a particular select list option is selected in a select field but this code has no effect Stefan Weiss <krewecherl@gmail.com> - 2015-11-30 09:43 +0100
    Re: trying to disable a text input field when a particular select list option is selected in a select field but this code has no effect fugee279@gmail.com - 2015-11-30 04:11 -0800
      Re: trying to disable a text input field when a particular select list option is selected in a select field but this code has no effect Stefan Weiss <krewecherl@gmail.com> - 2015-11-30 14:24 +0100
        Re: trying to disable a text input field when a particular select list option is selected in a select field but this code has no effect fugee279@gmail.com - 2015-11-30 11:06 -0800
        Re: trying to disable a text input field when a particular select list option is selected in a select field but this code has no effect Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-11-30 22:25 +0100
    Re: trying to disable a text input field when a particular select list option is selected in a select field but this code has no effect Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-11-30 22:43 +0100

csiph-web