Remove Div's from form with Javascript
I know this is possible i'm just not the greatest at web design I need to take a button that is inside of a form-group and move it into the form group of my edit box.
Any help is greatly appreciated I am sure I will eventually get it but would be nicer to not spend a ton of time on something someone else might quickly know how to do.
Best Answer
-
john_doyle Cireson Support Ninja IT Monkey ✭✭✭✭The code will look like this:
$("input[value='Edit Event Category']").detach().insertAfter($("input[name='GenericText_1']");
5
Answers