I want to take an input and use it's value as the name of a class that is added to it's parent.
So this:
<div class="">
<input value="something">
</div>
Would turn into this:
<div class="something">
<input value="something">
</div>
This is what I have, but it's not working:
$('input').parent('td').addClass($('input').attr('value'));
This should do it; you just have to decide when to do it -- as in what event should trigger this code: