Hello I'm trying to add data to TD tag using JavaScript. Every thing I tries so far
is not appearing gin the tag I'm capturing data from a drop down list. Once selected
that data along with other data I';m capturing should go to a specific tag on the HTML
page and be over written each time a new selection is made.
I have a JavaScript function which grabs information from the form lets say clientid
clientid = list.options[list.selectedIndex].value;
var store = "8513260005";
var node = ">>"+ store + ">>" + clientId;
HTML structure
<table cellpadding="0" border="0" align="" name="headingGrid">
<tbody>
<tr name="bdRow">
<td name="gridCell1"> </td>
<td class="subtitle" name="gridCell3">
<table align="" name="grid1">
<tbody>
<tr name="gridRow1">
<td class="mytitle" name="breadCrumbCell" id="mytitle">
<nobr>Corporation X <!--Here is where it needs to go-->
</td>
......
I tried something like this
$( node ).appendTo( "#mytitle td" ); //with no luck;
Thanking You In Advance,
PH
--
You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.