To add to your order, simply select "Add to Order" and then add your product to basket as normal.
$(document).ready(function () { $('#accLinked :input[id^=checkbox]').removeAttr('checked'); $("#showLessAccBtn").hide(); if ($(".accList").length <= 6) { $(".show-more-accessories").hide(); } else { $(".accList").each(function () { if ($(this).index() > 6) { $(this).hide(); } }); } $("#showMoreAccBtn").click(function () { $("#showMoreAccBtn").hide(); $("#showLessAccBtn").show(); $(".accList").each(function () { $(this).show(); }); }); $("#showLessAccBtn").click(function () { $("#showLessAccBtn").hide(); $("#showMoreAccBtn").show(); $(".accList").each(function () { if ($(this).index() > 6) { $(this).hide(); } }); }); });
$(document).ready(function () { var imageUrl = '//contentbb.buyitdirect.co.uk' + '/Styles/ModalBox/ajax-loader.gif'; var $loading = $('<div style="position: relative;top: 45%; left: 40%"><img src="' + imageUrl + '"/></div>'); //if header or image is clicked go to product mini popup $(".image, .linktitle").click(function (event) { var ProductId = $(this).attr('id').replace(/alink_|aImlink_/, ""); //$(this).parent().parent().attr('class').replace("alink_", ""); //get the product id from the anchor link and load the jquery dialog $("#dialogModal").append($loading).load('/Version/ProductMini/' + ProductId , function( response, status, xhr ) { //alert($(response)); //MyBIDAngularUtils.helpers.compileAngularElement('.qv-wrapper'); } ) .dialog({ minHeight: 500, height: 'auto', width: 1033, autoOpen: false, modal: true, closeOnEscape: true, resizable: false, dialogClass: 'dialogTitle', draggable: false, stack: false, open: function () { $("#ui-dialog-title-dialog").hide(); $(".ui-dialog-titlebar").removeClass('ui-widget-header'); $(".ui-widget-overlay").css('opacity', 0.9); //to change the close icon $(".ui-dialog .ui-dialog-titlebar-close").addClass('titlebarclose'); $(".ui-dialog-titlebar-close .ui-icon").addClass('closeicon'); $(".ui-icon-closethick").addClass('closethick'); $('.ui-widget-overlay').bind('click', function (event) { $("#dialogModal").dialog('close'); }); }, close: function () { //clear the dialog div on close $("#dialogModal").html(""); $(".ui-widget-overlay").css('opacity', 0.5); $('.ui-widget-overlay').unbind("click"); ga('send', 'event', 'QuickView', 'quick view – close'); } }); $(window).scroll(function () { $('#dialogModal').dialog('option', 'position', 'center'); }); $("#dialogModal").dialog('open'); return false; // prevent default click action from happening! }); });