Hi,
As you might know,Visual Studio's Find and Replace feature allows us to use Regular Expression but I don't know how to change something like this :
Math.round((document.getElementById('selectedproductPrixdock').value*document.getElementById('addxdock').value)*100)/100
to this one :
(Math.round((document.getElementById('selectedproductPrixdock').value*document.getElementById('addxdock').value)*100)/100).toFixed(2)
There are too much code like this on the page and changing them one by one is a big hassle.
Thanks in advance..