Creating a size/price calculator

Hi guys,

I’m looking to add a price/size calculator to my website so customers can get an idea of how much things will cost before having us out to their home.

Here is a link of exactly how I’d like it to work:
https://joes.co.uk/pricing-calculator

Does anyone have any idea of any third party sites or ways of building this and integrating it into webflow?

Thanks


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

Hey @LukeSvarc, you should be able to do it all with some javascript/jquery directly on Webflow. Something to start with:

var height = parse($('#height').val()); //Get the height
var width = parseInt($('#width').val()); //Get the width
var price = 0.02 //Per mm2

function calc(){
var area = height * width //Get Area
console.log(area * price) //Log the price into browser
}

I think the math needs some adjustment, but its a start