Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi,

    I Have to click twice on submit button in firefox also,please help..

    Thankyou

    Hi,
    I have this problem as well. Using Firefox. I suppose it could be theme related.
    Does anyone have the answer to this?

    Thanks

    Some investigation showed that this is because TinyMCE hadn’t saved the contents of the text editor to the textarea yet. Adding tinymce.activeEditor.save(); to an onclick handler for the submit button resolved this, but ideally it would go into the submit handler (if the user uses TinyMCE), IMHO.

    Code in full:

    $('.wpuf_submit').click(function(){
    	tinymce.activeEditor.save();
    });

    I’m (still) experiencing the same issue in FF (21.0)… Any chance of getting this solved?

    Same issue here!

    @erwin Wessels where do i have to add the code you provided?

    @jijo Jose, the supplied code is Javascript code that should go into the onload of the page that holds the form – so using the jQuery onload syntax:

    <script type="text/javascript">
    (function($){
      $(function(){
        $('.wpuf_submit').click(function(){
          tinymce.activeEditor.save();
        });
      });
    }(jQuery));
    </script>

    Hope this helps.

    @erwin Wessels Thank You mate. 🙂

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘[Plugin: WP User Frontend] Have to click twice on sumit button in Chrome’ is closed to new replies.