how do i code in jquery to dynamically add new page when i click add and those element that i have highlighted in yellow also delete page when i click delete along with those element that i have highlighted in yellow. please help anyone..
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Khalid DRISSI SLIMANIPosted May 25, 2015, 4:25 AM
$(document).ready(function() {
$("#Button1").click(function() {
$("#container").append('
});
$("#Button2").click(function() {
$("#answerdiv1").remove();
});
});
Nanhe SiddiquePosted May 25, 2015, 4:10 AM
Dipankar BiswasPosted May 25, 2015, 4:08 AM