Question: How would I make the code below go to www.nike.com when I swipe right on the Nike shoes , www.converse.com when I swipe right on
How would I make the code below go to "www.nike.com" when I swipe right on the Nike shoes, "www.converse.com" when I swipe right on the Converse shoes and "www.adidas.com" when I swipe right on the Adidas shoes. When I swipe left I want it to do nothing.
$(document).ready(function () {
// Define cards var cards =[ new Tindercardsjs.card(2, 'Adidas', 'shoes, $90', 'runners.jpg'), new Tindercardsjs.card(1, 'Converse', 'shoes, $40.', 'converse.jpg'), new Tindercardsjs.card(0, 'Nike', 'shoes, $55', 'nike.jpg'), ];
// Render cards
Tindercardsjs.render(cards, $('#main'), function (event) {
if(event.direction === 'right'){
// swipe right - go next
window.location.href = 'https://www.nike.com';
}
else{
"";
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
