Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('#form_is_with_transport').on('lcs-statuschange', '.btn-switch', function(){
- $.ajax({
- url: uriBase + "admin/booking/update_panel",
- type: "POST",
- data:{
- booking_id : $('#hidden_booking_id').val(),
- service_id : 1,
- new_pax_simple : $('#form_pax_simple').val(),
- new_pax_double : $('#form_pax_double').val(),
- new_pax_twin : $('#form_pax_twin').val(),
- new_transport : $('#form_is_with_transport').val(),
- new_hiking : $('#form_is_with_hiking').val(),
- new_confirmed : $('#form_is_confirmed').val()
- },
- cache: false,
- success: function (p) {
- alert('1.p : '+p);
- },
- error: function(e) {
- alert('1.e : '+e);
- }
- })
- })
Advertisement
Add Comment
Please, Sign In to add comment