16
votes
Which CSS tag creates a box like this with title?
I believe you are looking for the fieldset HTML tag, which you can then style with CSS. E.g.,
<fieldset style="border: 1px black solid">
<legend style="border …
0
votes
Accessing created DOM elements
var input1 = $( 'input[name="lp_name_1"]').clone(true);
should be
var input1 = $( 'input[@name="lp_name_1"]').clone(true);
Try that first …
