How can I make an alert in jQuery
when a price is higher than 400.
Look at there: <span class="element-price-value">424,97</span>
If value is higher than 400, I need to make an overlay modal popup that continue is not allowed and page need to refeshed.
Here is what I did but didn't work...
var price = $(".element-price-value");
if(price > 400){
alert("Hello! I am an alert box!!");
}