dirrty
dirrty copied to clipboard
jquery plugin to detect if the fields of a form had been modified
I had an issue with fields being marked as dirty merely by focusing them. Not sure whether this is context dependent, but I'm using Bootstrap 3. In the checkValues function,...
I have form where a user can add more input elements. In the background i clone the input element and change id, name and value on the cloned input element....
I want this plugin to monitor if my form is dirty, but just submit the changed fields to the server. How can I do this?
I have list of elements in the forms. When I listen the on dirty, can I get the current input element which got dirty.
Hi, I'm using this datepicker https://github.com/uxsolutions/bootstrap-datepicker If I enable the clear button setting `clearBtn: true,` this is not triggering a change when I clear the value and not enabling the...
Please, create a new tag to fix -> $('form').dirrty('setClean'); A current version is outdated
Is dirrty.js will work with input type file? I'm using jquery.filer.js the `` once I have upload a file and remove the file it still getting `data-is-dirrty="true"` Here is a...
Anyone have use it with x-editable or similar plugin? https://vitalets.github.io/x-editable/ I'm wondering what is the best approach to use dirrty for this kind of form...
I have a textarea filled and cleared by the click of a button. These cases where ignored by dirrty. To fix the problem I'm adding ` .trigger('keyup')` original ``` $('#clear').on('click',...