update v1.0.3.3
This commit is contained in:
31
public/lb-faveo/js/settings/new.js
Normal file
31
public/lb-faveo/js/settings/new.js
Normal file
@@ -0,0 +1,31 @@
|
||||
jQuery( document ).ready( function( $ ) {
|
||||
|
||||
$( '#form-add-setting' ).on( 'submit', function() {
|
||||
|
||||
//.....
|
||||
//show some spinner etc to indicate operation in progress
|
||||
//.....
|
||||
|
||||
$.post(
|
||||
$( this ).prop( 'action' ),
|
||||
{
|
||||
"_token": $( this ).find( 'input[name=_token]' ).val(),
|
||||
"setting_name": $( '#setting_name' ).val(),
|
||||
"setting_value": $( '#setting_value' ).val()
|
||||
},
|
||||
function( data ) {
|
||||
//do something with data/response returned by server
|
||||
},
|
||||
'json'
|
||||
);
|
||||
|
||||
//.....
|
||||
//do anything else you might want to do
|
||||
//.....
|
||||
|
||||
//prevent the form from actually submitting in browser
|
||||
return false;
|
||||
} );
|
||||
|
||||
} );
|
||||
|
Reference in New Issue
Block a user