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

jQuery live click isn't working form me if form contains input named "name". Changing name to something else helps. Can anyone tell me why that happens?

If there is a field name "named" live click is not working when I click input named "value". If I change name from "name" to "name2" clicking on field named "value" works.

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>

<script>
$('form[name="prepare"] input[name="value"]').live('click', function(){
    alert('Clicked!');
    return false;
});
</script>

<form name="prepare" method="post">
    <input type="text" name="name" />
    <input type="text" name="value" />
</form>
share|improve this question
Seems like it’s got nothing to do with the input[name="name"], but with the form[name="prepare"]. – Mathias Bynens Jan 3 '10 at 15:07

3 Answers

Change the name="prepare" attribute/value pair of the FORM element to id="prepare" and it should work, like so:

  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
  <script>
   $('form#prepare input[name=value]').live('click', function() {
    alert('Clicked!');
    return false;
   });
  </script>
 <form id="prepare" method="post">
  <input type="text" name="name">
  <input type="text" name="value">
 </form>
share|improve this answer

if you address your <form> by id instead of by name the bug disappears:

<form name="prepare" method="post" id="myform">

$('form#myform input[id="value"]').click(function(){
share|improve this answer

html specs:

<form>, name=

Note. This attribute has been included for backwards compatibility. Applications should use the id attribute to identify elements.

Since this attribute is deprecated, jquery may process it incorrectly.

share|improve this answer

protected by Community Sep 9 '11 at 2:59

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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