I'm quite new to jQuery, so still trying to wrap my head around how it works.
I'm creating a admin-panel where the admin can insert some questions. As its not a fixed amount, the admin should be able to add or remove extra input-fields, so the admin can choose the desired amount questions.
This is how it looks graphically: 
And this is the code:
<div class="adinputfield90">
<input type="text" placeholder="Insert question 1"> <span class="font-entypo icon-circled-cross adaddnextremove" aria-hidden="true"></span></input>
</div>
The span class holds the image, so the add-new input is just another webfont.
How can I get this to work, so I can add an infinite amounts of inputfields? I should of cause make sure that if theres only one input I can only add, and not remove that one.
All help is appreciated!