Using jQuery, anyone here know how I can rip a form and all of its inputs, labels and text?
I have tried the following selectors:
form, label, :input, :text
This one returns form items, THEN label items, THEN inputs, etc which is no good. Need them in the same order.
form > :input
This will only do inputs within a form, need form action/method too and labels.
form > :input, label, :text
This is a mixture problem of the first two. Still does it in order…