|
jquery problem with .load
I want to load everytime user click on Add more a page test.html where are inside html stored text fields for form. The problem is everytime I call the function, it removes the first test.html and shows again test.html but it should show an extra one without removing the first one. How to do that?
$(function() {
$('#clickme').click(function() {
$('#include').load('test.html');
Tnx!
|