I created inputs with price values.
Example:
<input type="text" value="59,00"/>
Now I have to replace , (comma) with . (dot) using jQuery.
I tried this, but it does not work:
$('#inputid[value~=,]').each(function(i){ $(this).text($(this).text().replace(',','.')) });
Could you help me?
source share