Search Results

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 …
4
votes

JQuery Ajax Return value

The success function takes a parameter, which contains the fetched data. So in your example: $(document).ready( function(){ $.ajax({ type:"GET", url …