jQuery(document).ready( function(){ jQuery('.basket_add').click( function(){ var item_id = jQuery(this).attr('id'); var quantity = $(this).parents('.price-action').find(':input').val() //var quantity=jQuery('#forpost :selected').val(); if (quantity==null) quantity=1; jQuery.ajax({ type: "POST", url: "/shop/basket_add/", data: "id=" + item_id + "&quantity=" + quantity, success: function(a){ jQuery('#basket_add_dialog').dialog({ modal: true, resizable: false, title: 'Товар добавлен', width: 420, buttons: [ { text: 'В корзину', click: function(){ jQuery(window.location).attr('href', '/shop/basket/'); } }, { text: 'Продолжить покупки', click: function(){ jQuery(this).dialog("close"); window.location.reload(); } } ] }); }, }); }); jQuery('.basket_del').click( function(){ var item_id = jQuery(this).attr('id'); jQuery.ajax({ type: "POST", url: "/shop/basket_del/", data: "id=" + item_id, success: function(a){ window.location.reload(); } }); }); jQuery('.basket_minus').click( function(){ var item_id = jQuery(this).attr('id'); jQuery.ajax({ type: "POST", url: "/shop/basket_minus/", data: "id=" + item_id, success: function(a){ window.location.reload(); }, }); }); jQuery('.basket_plus').click( function(){ var item_id = jQuery(this).attr('id'); jQuery.ajax({ type: "POST", url: "/shop/basket_plus/", data: "id=" + item_id, success: function(a){ window.location.reload(); }, }); }); $('a.watch-video').click(function(e) { e.preventDefault(); var container = $('
'); container.flowplayer( 'http://www.salefireworks.ru/media/flowplayer/flowplayer-3.2.7.swf', $(this).attr('href') ); $.fancybox({ content: container, width: 600, height: 600, scrolling: 'no', autoDimensions: false }); }); });