FlexPrice Test

Github Link - https://github.com/FlexShopper/FLEXPRICE

Test 1 - Multiple Products

Note: Products whose price exceeds our min or max price range do not receive the FlexPrice widget.

var test1 = new _FlexPrice({
    productSelector: '#test1 .product',
    priceSelector: '.price',
    size: 'MD'
});
Product A
$1999.00
Product B
$242.00
Product C
(Below Min Price)
$13.99

Test 2 - Single Product

var test2 = new _FlexPrice({
    productSelector: '#test2 .product',
    priceSelector: '.price',
    targetSelector: '.cart-button',
    size: 'SM'
});
Product A
$257.00

Test 3 - Single Product with Placeholder

var test3 = new _FlexPrice({
    productSelector: '#test3 .product',
    priceSelector: '.price',
    targetSelector: '.fs-placeholder div',
    size: 'XS'
});
Product A
$870

Test 4 - Multiple Products with Placeholder

Note: Products whose price exceeds our minimum and maximum price range do not receive the FlexPrice widget.

var test4 = new _FlexPrice({
    productSelector: '#test4 .product',
    priceSelector: '.price',
    targetSelector: '.fs-placeholder div',
    size: 'MD'
});
Product A
$1570.32
Product B
$1232.95
Product C
(Above Max Price)
$3299.99