So the following code:

$product_id = $(this).parent().parent().html();

Produces this:

<div class="right">
   <input value="6" name="quantity" id="" maxlength="2" type="text">
   <label> Places required</label>
   <p class="btn update">Update</p>
   <input name="product_id" value="2" class="product_id" type="hidden">
   <p class="btn remove">Remove from basket</p>
</div>
<a href="/product//"><img src="http://dummyimage.com/100x100/333/eee" alt="" class="border-thick shadow"></a>
<div class="left">
   <h5>Title</h5>
   <select name="courses_details_id">
      <option value="">Select date/venue...</option>
      <option value="6">10 Oct 2011 - Chicago, USA</option>
      <option value="4">13 Oct 2011 - Hastings</option>
      <option value="2">18 Nov 2011 - Paris, France</option>
   </select>
   <br>
   <p class="price"><span class="small">From</span> £77.88</p>
</div>

And I simply want to get the value for product_id, so this makes sense:

$('#basket li form select[name=courses_details_id]').change( function(){    
    $(this).parent().parent().children("input[name$=product_id]").val();
});

but it returns a value of undefined

link|improve this question

1  
Try using .find instead of .children? – Alex Oct 10 '11 at 15:40
input[name$=product_id] remove $ – punit Oct 10 '11 at 15:41
Haha thanks, I never knew of the function 'find'! – Friendly Code Oct 10 '11 at 15:43
feedback

3 Answers

up vote 1 down vote accepted

Can't you just do

$(this).find("input[name='product_id']").val();
link|improve this answer
This works perfectly - thanks a lot – Friendly Code Oct 10 '11 at 15:44
feedback

You are missing quotation marks in your selector, it should be like this

$('input[name$="product_id"]')
link|improve this answer
feedback

Simplify your markup. Make you select element look like this

<select name="course_details_id" id="course_details"/>

Then to get the value its a simple matter of:

$("#course_details").change(function() {
   var product = $(this).val();
});
link|improve this answer
It's always a good idea to have the name and id attributes be identical in form fields. Avoids potential confusion. – Blazemonger Oct 10 '11 at 16:06
feedback

Your Answer

 
or
required, but never shown

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