ep.sslSwitch.submit()
Categories: Utilities
ep.sslSwitch.submit( form )
Plugin: ep.sslSwitch
Description: Submit the givn SSL switch form.
-
ep.sslSwitch.submit( form )
version added: 6.11.2form A form element(jQuery object).
The ep.sslSwitch.submit()
method submits the givn form and switch location to SSL mode.
You can overwrite this method to perform an way to submit the form, note that a form can be sent only once. If you only want to modify the form or perform a method before the location switch to SSL mode, use the
ep.sslSwitch.addHandle()
method.-
Overwrite the SSL switch submit method.
Code:
ep.sslSwitch.submit = function( form ){ form[0].submit(); };