I have the following div. That need to be added whenever i click on the button/link
Solution 2:
From the comment "Whenever i click on the add dependent, this div has to be added to the existing div. How i can do this?" :
$("#baseDiv").append($("#newDiv").html());
Not sure that's what you want
Post a Comment for "Adding Html Content Dynamically To The Page"