I need to add the following div structure when i click button at every time? I need to generate the following whole div structure at every time of clicking the button using
How about this:
$('#button_id').click(function() { var structure = $('sendSMS'); $('#whatever').append(structure); });