how could I go about replacing a form submit button with a image submit button using jquery?
The reason I need to use jquery is because I am using a plugin to generate the contact form and jquery seems like the most effective way of replacing it without going into the plugin’s code.
if you are doing it in jQuery, and your form is generated dynamically, you can apply these
since we cannot put an image in a type=submit input I hide it and place an input type=image since it also acts as a submit.
we can also use the css provided by DHuntrods by