i have one text box formated with follwoing syntax
$("#cont_dt").blur(function(){
$(this).format({format:"#,###.00", locale:"us"});
})
this work fine, for example if i type 250000.50 it automatically formated to
250,000.50
but the problem is when i try to pass same value to php file via ajax to add record in mysql i got error.
i think i need to bring 250,000.50 again in 250000.50 format to store in mysql.
how can i do this?
Thanks
**EDIT**
dear all i need ajax / java script function to remove , not php function. thanks for help