Hello!
If I browse this [url=
http://www.antilopagold.su/kartiny]site[/url] from my desktop Chrome and press "Добавить в корзину"(Add to cart button) for some product, the cart is filling because the comand
- jQuery.ajax({
- type: "POST",
- cache: false,
- dataType: "json",
- url: window.vmSiteurl + "index.php?option=com_virtuemart&nosef=1&view=cart&task=addJS&format=json"+vmLang,
- data: dat
- }).done(...
works fine. This command is placed at row 81 of /components/com_virtuemart/assets/js/vmprices.js file
When I debugging my mobile Chrome
42.0.2311.111 execution of this ajax command doesn't lead to filling the shopping cart. Why is it so. How to understand the reason of such different execution?
By the way w
hile usb debugging of my mobile Chrome I've found that in a mobile device there is no event handler for the "click" event for the <input type="submit" name="addtocart" class="addtocart-button" value="Добавить в корзину" title="Добавить в корзину"> button. But any way metioned
jQuery.ajax({ function starts on a mobile browser too.