[jQuery] pass inputed text to value attribute (using tablesorter): a simple way

[jQuery] pass inputed text to value attribute (using tablesorter): a simple way


i need to pass user entered text (which will be a number 1-10) to the value
of the <input>. i'm using tablesorter plugin, so i need the data to be
passed automagically/immediately so that users can sort the column: Order
Stacks
any help much appreciated. thanks
here is how my code set up:
<form id="table">
<table id="tablesorter-demo" class="tablesorter" border="0" cellpadding="0"
cellspacing="1">
        <thead>
            <tr>
<th><input type="radio" name="feature-stack" checked="checked" /></th>
<th>Order Stacks</th>
<th>I'm calling this stack mine</th>
<th> / Edit </th>
<th> / Delete </th>
            </tr>
        </thead>
        <tbody>
            <tr>
<td><input type="radio" name="feature-stack" checked="checked" /></td>
<td><input type="text" /></td>
<td><td>I'm calling this stack mine</td></td>
<td> / Edit </td>
<td> / Delete </td>
            </tr>
            <tr>
<td><input type="radio" name="feature-stack" /></td>
<td><input type="text" /></td>
<td><td>I'm calling this stack mine</td></td>
<td> / Edit </td>
<td> / Delete </td>
            </tr>
            <tr>
<td><input type="radio" name="feature-stack" /></td>
<td><input type="text" /></td>
<td><td>I'm calling this stack mine</td></td>
<td> / Edit </td>
<td> / Delete </td>
            </tr>
            <tr>
<td><input type="radio" name="feature-stack" /></td>
<td><input type="text" /></td>
<td><td>I'm calling this stack mine</td></td>
<td> / Edit </td>
<td> / Delete </td>
            </tr>
        </tbody>
    </table>
</form>
--
View this message in context: http://www.nabble.com/pass-inputed-text-to-value-attribute-%28using-tablesorter%29%3A-a-simple-way-tp19619798s27240p19619798.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.