Guest User

Untitled

a guest
Oct 22nd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. $('.location').append(
  2. '<fieldset>'+
  3. '<a href="javascript:;" class="remove">' +
  4. '<label for="campus_' + location_count + '">Campus:</label>' +
  5. '<input id="location_' + location_count + '" type="text" name="campus_' + location_count + '" /><br />' +
  6. '<label for="phone_' + location_count + '">Phone:</label>' +
  7. '<input id="location_' + location_count + '" type="text" name="phone_' + location_count + '" /><br />' +
  8. '<label for="office_' + location_count + '">Office:</label>' +
  9. '<input id="location_' + location_count + '" type="text" name="office_' + location_count + '" /><br />' +
  10. '</fieldset><br />'
  11. );
  12. location_count += 1;
Add Comment
Please, Sign In to add comment