azraelGG Posted December 14, 2012 Share Posted December 14, 2012 i work on some code that on every click will add input field to my html and that part works fine, but i want that field to have an ID next to it so i can use it for my database and php after heres the code <script type="text/javascript"> var counter = 1; $(document).ready(function(){ $("#addCestica").click(function(){ counter++; //$("#sveCestice").append("<br /><input id=\"cestica\" "+this.counter" />"); $("#sveCestice").append("<br /> <input />").attr("id",this.counter); }); $("#removeCestica").click(function(){ counter--; $("br:last").remove(); $("#sveCestice input:last").remove(); }); }); </script> paragraph where i display input fields is empty Link to comment https://forums.phpfreaks.com/topic/271989-jqueryjs-append-with-attribute/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.