I was looking for a solution for this as well, in my case I was trying to hide the add more every time that I click the button so I dont get repetitive buttons of ADD more in each row. I was trying to acomplish that using jquery so I add a custom class to my button and then hide it on click, but it only works in first button,
here is my jquery
$(‘.hidebutton’).click(function() {
$(this).hide();
});
Anyone could help me ?
-
This reply was modified 6 years, 9 months ago by joaorocco.