Skip to main content

jquery form change


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?


Source: Tips4allCCNA FINAL EXAM

Comments

  1. 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
    }
    });

    ReplyDelete
  2. 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;
    });

    ReplyDelete
  3. $('form :input').change(function() {
    // Something has changed
    });

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

    ReplyDelete
  5. 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...
    }
    });

    ReplyDelete
  6. 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!");
    });

    ReplyDelete
  7. If you want to check if the form data, as it is going to be sent to the server, have changed, you can serialize the form data on page load and compare it to the current form data:

    $(function() {

    var form_original_data = $("#myform").serialize();

    $("#mybutton").click(function() {
    if ($("#myform").serialize() != form_original_data) {
    // Something changed
    }
    });

    });

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.