• Resolved ithall

    (@ithall)


    Do you have any documentation or examples on the javascript functionality?

Viewing 1 replies (of 1 total)
  • Plugin Author EDGARROJAS

    (@edgarrojas)

    Sorry i don’t have documentation for that yet but basically you can execute javascript after the form is loaded or before the form is submit.

    If you want to add code when the form is loaded you need to add it in this method:

    AfterFormLoaded:function(jQueryFormReference){
    //Here you can put code that you want to be executed after the form is loaded
    },

    If you want to add code before the form is submitted you need to add it in this method:

    BeforeFormSubmit:function(formData,jQueryFormReference){
    //Here you can put code that you want to be executed before the form is submitted
    }

    Hope this helps but if it doesn’t please let me know.

Viewing 1 replies (of 1 total)

The topic ‘Javascript’ is closed to new replies.