DEMO on jsFiddle http://jsfiddle.net/L48L88vm/3/
The current code only adds a cell when I need it to create a new row below "Attorney Review Received" to display the file chooser.
<table>
<tr id="ARRrow">
<td>Attorney Review Received:</td>
<td><input id="ARR" type="button" value="Click me"></td>
</tr>
<tr>
<td>Full Package Sent to Title:</td>
</tr>
</table>
JS:
$("#ARR").click(function () {
this.style.visibility='hidden';
$("#ARRrow").each(function () {
var tds = '</tr><tr><td>Attorney Review Results Document (PDF):</td><td><input type="file" name="uploadFileName1" value="[+ $uploadFile +]" /></td><td><input type="submit" name="action" value="Upload Attorney Review Results"></td></tr>';
$(this).append(tds);
});
});
I tried to be clever and close the tr tag but that clearly isnt working right.