views:

103

answers:

6
+3  Q: 

jquery form change

Hello!

In jQuery, is there a simple way to test if ANY of a forms elements have changed?

EDIT: I should have added that I only need to check on a click() event.

EDIT: Sorry I really should have been more specific! Say I have a form. And I have a button with the following:

$('#mybutton').click(function() {
  //here is where is need to test.
  if( FORM has changed ) {
     do something
  }
});

how would I test if the form has changed since it was loaded?

+1  A: 
$('form :input').change(function() {
    // Something has changed
});
VoteyDisciple
A: 

First, I'd add a hidden input to your form to track the state of the form. Then, I'd use this jQuery snippet to set the value of the hidden input when something on the form changes:

    $("form")
    .find("input")
    .change(function(){
        if ($("#hdnFormChanged").val() == "no")
        {
            $("#hdnFormChanged").val("yes");
        }
    });

When your button is clicked, you can check the state of your hidden input:

$("#Button").click(function(){
    if($("#hdnFormChanged").val() == "yes")
    {
        // handler code here...
    }
});
JMP
No reason for extra inputs :) Check out [`.data()`](http://api.jquery.com/data/)
Nick Craver
I learn something new every day!
JMP
A: 

Looking at the updated question try something like

$('input, textarea, select').each(function(){
    $(this).data("val", $(this).val());
});
$('#button').click(function() {
    $('input, textarea, select').each(function(){
        if($(this).data("val")!==$(this).val()) alert("CHANGED!1123%%32");
    });
});

For the original question use something like

$('input').change(function() {
    alert("Things have changed!");
});
Pez Cuckow
This doesn't check `<textarea>` or `<select>` elements.
Nick Craver
After your edit...this seems like a lot of extra work and data being moved around, all you need is a `boolean` set to true when a change happens. Also, this still isn't form-specific, what if there were other forms in the page?
Nick Craver
+1  A: 

You can use multiple selectors to attach a callback to the change event for any form element.

$("input, select").change(function(){
    // Something changed
});

EDIT

Since you mentioned you only need this for a click, you can simply modify my original code to this:

$("input, select").click(function(){
    // A form element was clicked
});

EDIT #2

Ok, you can set a global that is set once something has been changed like this:

var FORM_HAS_CHANGED = false;

$('#mybutton').click(function() {
    if (FORM_HAS_CHANGED) {
        // The form has changed
    }
});

$("input, select").change(function(){
    FORM_HAS_CHANGED = true;
});
Joe D
added another edit! sorry
mike
+3  A: 

You can do this:

$("form :input").change(function() {
  $(this).closest('form').data('changed', true);
});
$('#mybutton').click(function() {
  if($(this).closest('form').data('changed')) {
     //do something
  }
});

This rigs a change event handler to inputs in the form, if any of them change it uses .data() to set a changed value to true, then we just check for that value on the click, this assumes that #mybutton is inside the form (if not just replace $(this).closest('form') with $('#myForm')), but you could make it even more generic, like this:

$('.checkChangedbutton').click(function() {
  if($(this).closest('form').data('changed')) {
     //do something
  }
});
Nick Craver
A: 

You need jQuery Form Observe plugin. That's what you are looking for.

Sarfraz