My jQuery right now works perfectly when I use it to perform creation, and deletion, of textboxes. But the code does not work properly when I decide to allow users to edit them after they submit and the same code upon modification does not work anymore.
My rules are such that there needs to be a minimum of 2 iterations boxes and 1 task in each iteration, anything less than that would cause the jQuery to disable my remove iteration and minus task button respectively.
Now my codes cannot seem to allow a user to reduce a task even though there is more than 1 task in the iteration and the remove iteration button is forever disabled, despite starting off with, say, 5 iterations.
I cannot remove the 'disable' at the beginning because a user may end up with zero task if he has only filled in one task, so I can only remove the 'disable' once the if-loop proves that there is more than the minimum required.
HERE is my jQuery code, can somebody please help and give some advice? :)) Thanks in advance!
PS: $('.plus') refers to my add task class button, $('.moins') refers to my minus task class button, $('#removeIteration') and $('#addIteration') both represent remove iteration and add iteration respectively.