This is my current code unmodified: http://jsfiddle.net/XABtF/
I am currently using both jQuery Validation & Knockout Validation
I have read through the documentation on both and tried implementing them to my existing script, both haven't ran successfully. Here is how I attempted to implement the Knockout Validation: http://jsfiddle.net/yNVeF/
My script is very simple, I would like to just put validation on two observables like this:
self.emailAdd = ko.observable("");
I have tried doing it like this:
self.emailAdd = ko.observable("").extend({required: { message: 'Please supply your email address.' }});