I've been trying to show/hide a button based on the data currently in Input fields have been changed. It's an Account Update page, and the data is pulled from a database and inserted into the input fields.
I've found this topic and it's been mostly helpful: JQuery - Disable submit button unless original form data has changed
I've also pulled and adjusted a snippet of code and was able to make it work how I wanted: http://jsfiddle.net/Pug3H/97/
However when I try to implement this code onto my page it does not seem to work. A sample of how the input fields are populated from the database:
<input type="text" name="Name" value="<?= $row['Name'] ?>" required />
I'm not sure if this is conflicting with the serialize method and if I should be doing something differently? Any help is appreciated. Thanks!