I have the following HTML
<input type="submit" name="cm-ajax-submit" value="Register">
I need to append a div tag so it'll have this format
<input type="submit" name="cm-ajax-submit" value="Register"><div id="cmprivacy"></div>
Is there a way to use jQuery append or another function to find the input with the name cm-ajax-submit and append that div?
Thanks