Created
March 14, 2014 10:35
-
-
Save RKushnir/9545439 to your computer and use it in GitHub Desktop.
Show Intertop.ua product availability on click
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.item_img').click(function(e) { | |
e.preventDefault(); | |
var product_id = $(this).attr('href').match(/\/(\d+)\.html/)[1] | |
$.post('/shop/item/shops', { | |
region_id: '***region***', | |
size: '***size***', | |
product_id: product_id, | |
}, function(data) { | |
console.log(product_id, data.length > 0); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment