Tagged Questions

3
votes
3answers
2k views

Finding the next input (of a parent?) with jQuery

I've got a checkbox inside a table, and when you click on it, it'll change the background colour accordingly like so... $("#table tr td :checkbox").bind("click change", function() { $this = ...
1
vote
2answers
187 views

Using jQuery, when drop down box changes, I need another input field to become required using Coldfusion

I have a form that outputs systems assigned to a project. The systems are looped and new rows can be added dynamically so using ID attribute is not available. When the user make a change to the ...
0
votes
3answers
63 views

Jquery - find the next input:text element after a known element

I have an id for a <tr id="tagTR"> Given the above, is it possible to find the next input:text element regardless of any other mark up in between . Is there a jQuery selector that I can use for ...
0
votes
4answers
101 views

jQuery add empty label tags next to every radio button or checkbox

I need a simple jQuery code that will add an empty label tag next to every radio button or checkbox So for example: $('input[type="radio"]').next().add("<label for="radio"></label>"); ...