The Super Shuttle shared minibus transfer is a no-fuss no-hassle journey direct to your final destination with a maximum of 2 or 3 stops en route to drop off other passengers. Maximum of 8 passengers on board.
The price is valid for a destination within central Paris (postcode starting with 75) including the immediate suburbs around central Paris : Levallois Perret, Neuilly sur Seine, Boulogne Billancourt, Issy Ies Moulineaux, Vanves, Malakoff, Montrouge, Gentilly, Le Kremlin Bicetre, Ivry sur Seine, Vincennes, Aubervilliers, Clichy, Saint Denis, Saint Ouen, Pantin, Bagnolet, Le Pre Saint Gervais, Les Lilas, Mountreuil sous Bois, Saint Mande, Charenton le Pont.
Please note that Super Shuttle Transfers allow for one hand luggage and one suitcase per person. Please enquire via our contact email if your luggage are over and above this allowance.
Make sure you fill in the customized tab fully so that we have all the necessary information for your transfer.
Please note that you will be receiving a separate email from us with all the necessary instructions needed.
If you would like to a return transfer, place your first transfer request in your basket, then make another booking for the return journey if available and fill in the requested fields.
');
$('#'+$el.attr('id')+'_datepicker').datepicker({
altField: $el,
altFormat: 'yy-mm-dd',
nextText: '',
prevText: ''
, minDate : '+3D' });
if (currentDate != null)
$('#'+$el.attr('id')+'_datepicker').datepicker( "setDate", $.datepicker.parseDate('yy-mm-dd', currentDate) );
}
var $el = $('textarea[name=textField85]').first();
var currentTime = $el.val();
var $input = $('')
/*.attr('type', 'time') avoid "Uncaught type property can't be changed" on Prestashop 1.3*/
.attr('id', $el.attr('id')+'_time')
.attr('rel', $el.attr('id'))
.val(currentTime);
$input.attr('step', '900'); $el.hide().after($('').append($input));
$input.timeInput({altField: $el});
var $el = $('textarea[name=textField86]').first();
$el.attr('placeholder', "");
var $el = $('textarea[name=textField87]').first();
$el.attr('placeholder', "");
var $el = $('textarea[name=textField88]').first();
$el.attr('placeholder', "");
var $el = $('textarea[name=textField89]').first();
$el.attr('placeholder', "");
var $el = $('textarea[name=textField90]').first();
if ($el.val() == '')
$el.val('0');
var $input = $('')
/*.attr('type', 'number') avoid "Uncaught type property can't be changed" on Prestashop 1.3*/
.attr('id', $el.attr('id')+'_number')
.attr('rel', $el.attr('id'))
.val($el.val())
.css('height', '28px');
$input.attr('min', '0'); $input.attr('max', '8'); $input.attr('placeholder', "");
$el.hide().after($('').append($input));
$input.change(function() {
$('#' + $(this).attr('rel')).val($(this).val());
});
if (!Modernizr.inputtypes.number) {
if ($('div.customization_block').css('display') == 'none') {
$('div.customization_block').css('display', 'block');
$input.spinner({allowNull: true});
$('div.customization_block').css('display', '');
} else
$input.spinner({allowNull: true});
}
var $el = $('textarea[name=textField91]').first();
var $input = $('')
/*.attr('type', 'text') avoid "Uncaught type property can't be changed" on Prestashop 1.3*/
.attr('id', $el.attr('id')+'_date')
.attr('rel', $el.attr('id'))
.val($el.val());
$el.hide().after($('').append($input));
$input.attr('placeholder', "");
$input.change(function() {
$('#' + $(this).attr('rel')).val($(this).val());
});
$input.keypress(function(event) {
if (event.which > 0 && !event.ctrlKey && !event.metaKey && !event.altKey && event.which != 8) {
if (event.which == 13)
event.preventDefault();
}
});
var $el = $('textarea[name=textField92]').first();
$el.attr('placeholder', "");
var $el = $('textarea[name=textField93]').first();
$el.attr('placeholder', "");
var $el = $('textarea[name=textField94]').first();
$el.attr('placeholder', "");
var $el = $('textarea[name=textField95]').first();
$el.attr('placeholder', "");
var $el = $('textarea[name=textField96]').first();
$el.attr('placeholder', "");
var $el = $('textarea[name=textField200]').first();
var currentTime = $el.val();
var $input = $('')
/*.attr('type', 'time') avoid "Uncaught type property can't be changed" on Prestashop 1.3*/
.attr('id', $el.attr('id')+'_time')
.attr('rel', $el.attr('id'))
.val(currentTime);
$input.attr('step', '900'); $el.hide().after($('').append($input));
$input.timeInput({altField: $el});
var $el = $('textarea[name=textField201]').first();
$el.attr('placeholder', "");
$("textarea[maxlength]").keypress(function(event){
var key = event.which;
//all keys including return.
if(key >= 33 || key == 13) {
var maxLength = $(this).attr("maxlength");
var length = this.value.length;
if(length >= maxLength)
event.preventDefault();
}
});
$("textarea[maxlength]").keyup(function(event){
var maxLength = $(this).attr("maxlength");
var length = this.value.length;
if(length >= maxLength)
this.value = this.value.substr(0, maxLength);
});
$('li.customizationUploadLine.required textarea, li.customizationUploadLine.required input').attr('required', 'required');
};
$(document).ready(function() {
sd_bettercustomizationInitForm();
});
//-->
');
sd_bettercustomizationInitAjax();
// ajaxCart.displayNewCustomizedDatas remove all inputs values and I don't want that
if (typeof ajaxCart !== 'undefined' && ajaxCart !== null) {
sd_bettercustomization_ajaxCart_displayNewCustomizedDatas = ajaxCart.displayNewCustomizedDatas;
ajaxCart.displayNewCustomizedDatas = function(product) {
$('#text_fields li textarea').each(function() {
$(this).attr('sd_bettercustomization', $(this).attr('value'));
});
$('#text_fields li input, #text_fields li select').each(function() {
$(this).attr('sd_bettercustomization', $(this).attr('value'));
});
sd_bettercustomization_ajaxCart_displayNewCustomizedDatas(product);
$('#text_fields li textarea').each(function() {
$(this).attr('value', $(this).attr('sd_bettercustomization')).removeAttr('sd_bettercustomization').change();
});
$('#text_fields li input, #text_fields li select').each(function() {
$(this).val($(this).attr('sd_bettercustomization')).removeAttr('sd_bettercustomization').change();
});
}
}
});
var sd_bettercustomization_ajaxCart_displayNewCustomizedDatas = false;
//var sd_bettercustomizationInitForm = function() {}; desactivé par captusite -> fout la merde sinon
var sd_bettercustomizationResetForm = function() {};
var sd_bettercustomizationInitAjax = function(event) {
$('#customizationForm')
.append('')
.ajaxForm({
beforeSubmit: function() {
var event = $.Event("presubmit");
$('#customizationForm').trigger(event);
if ( event.isDefaultPrevented() )
return false;
},
beforeSend: function() {
// display customization block
var $block = $('div.customization_block');
if ($block.length
&& $block.attr('id'))
$('a[href=\'#' + $block.attr('id') + '\']').click();
// display progress bar
sd_bettercustomizationResetForm();
$('#customizationForm').hide();
$('#sd_bettercustomization_progress span').width('0%')
$('#sd_bettercustomization_progress').show();
},
uploadProgress: function(event, position, total, percentComplete) {
$('#sd_bettercustomization_progress span').width(percentComplete + '%');
},
success : function(data) {
$('#sd_bettercustomization_progress span').width('100%');
var reg = new RegExp('\\sid="?custom'+'izationForm"?[^>]*>', '')
var start = data.search(reg);
if (start == -1) {
reg = new RegExp('
', '')
var start = data.search(reg);
var div = data.substring(start+19);
var end = div.search(//);
alert($(div.substr(0, end)).text().replace(/\s+/g, ' '));
$('#customizationForm').show();
$('#sd_bettercustomization_progress, #customizationForm ajax-loader').hide();
} else {
var datas = [];
$('#customizationForm textarea').each(function() {
datas[$(this).attr('id')] = $(this).val();
});
var form = data.substring(start);
var start = form.search(/>/);
var form = form.substring(start + 1);
var end = form.search(//);
$('#customizationForm').get(0).innerHTML = form.substr(0, end); // because Prestashop HTML code is so bugged that jQuery html() doesn't work
for (var id in datas) {
$('#' + id).val(datas[id]);
}
$('#customizationForm').show();
$('#sd_bettercustomization_progress').hide();
sd_bettercustomizationInitAjax();
//sd_bettercustomizationInitForm(); desactivé par captusite -> fout la merde sinon
if (typeof ajaxCart !== 'undefined' && ajaxCart !== null)
sd_bettercustomization_ajaxCart_Add( sd_bettercustomization_ajaxCartData['idProduct'],
sd_bettercustomization_ajaxCartData['idCombination'],
sd_bettercustomization_ajaxCartData['addedFromProductPage'],
sd_bettercustomization_ajaxCartData['callerElement'],
sd_bettercustomization_ajaxCartData['quantity'],
sd_bettercustomization_ajaxCartData['whishlist']);
else
$('#buy_block').submit();
}
}
}
);
$('#customizationForm input[type=button], #customizationForm>p:first').hide();
}
//-->
}
}