ExClusIive
New Member
My table is as follows\[code\]<table id='demoTable'> <tr> <td>8: Tap on APN and Enter <B>www</B>. <INPUT id=h150000000000000109743 class=hid value="http://stackoverflow.com/questions/13816944/test value" type=hidden> <INPUT id=h250000000000000109743 class=hid1 value="http://stackoverflow.com/questions/13816944/26,222,98,10,50000000000000109744,T,~25,221,99,10,,T,www" type="hidden"> </td> </tr></table>\[/code\]I want to change the text only \[code\]8: Tap on APN and Enter <B>www</B>.\[/code\]
without affecting the hidden fieldsI am trying jqery but not finding the solution\[code\]function changeText() { $("#demoTable td").each(function () { for (var i = 0; i < $(this).children.length; i++) { alert($(this).children(i).val()); } // alert($(this).html()); // $(this).text("hello"); //alert($(this).html()); });}\[/code\]
without affecting the hidden fieldsI am trying jqery but not finding the solution\[code\]function changeText() { $("#demoTable td").each(function () { for (var i = 0; i < $(this).children.length; i++) { alert($(this).children(i).val()); } // alert($(this).html()); // $(this).text("hello"); //alert($(this).html()); });}\[/code\]