dirty_form
dirty_form copied to clipboard
A jQuery plugin for alerting users to unsaved changes to forms before they leave a page or tab...
I was trying in Chrome, page is getting redirected even if its changed, in case of radio button and check box.
I found dirty_form because jquery.bind("change") doesn't work for drop down lists, and I didn't want to use .change since I need to namespace the event. Ironically, it works great on...
Thanks for a great lib, nobody else has gotten close to creating something like this. There is an odd case in input_checker where neither a dirty or a clean will...
Hi, In clean_form() method, you're calling dirtyform.reset() : ``` if(dirtyform.is('form')) { dirtyform.reset().find('.changed:input').each(function(){ $(this).trigger($.DirtyForm.monitorEvent + '.dirty_form'); }); } ``` A javascript error occurs : ``` dirtyform.reset is not a function ```...
Not sure this needs addressing in the source, safari 3 is now obsolete and unlike IE, people tend not to run old versions, this is more of a note in...
I experimented with switching to synthesizing clicks rather than relying on href. This allowed me to dirty_stopper() elements that didn't or aren't supposed to have href attributes, such as form...