I\'m writing a script to add div block after clicking the add button.
Everything is fine, however after adding second block that incrementing.
For example: After se
you need to append to a parent div, add an additional div
like "container" on top of your "room-type" and append your clone to it
room.clone().appendTo("#container");
also before removing check the length of your "room-type" class
here is a working fiddle for you
https://jsfiddle.net/fxabnk4o/12/