SyntaxFix
Write A Post
Hire A Developer
Questions
You can get the ids of specifict tags and send it to a annother element. For exemple:
$("input").map(function() { $( "textarea" ).append(this.id+"\n"); });
It will get all input ids and send it to textarea.