Moin Moin!
sprintf("%.2f €",summe) könnte helfen.
In Javascript hilft nur rohe Gewalt:
var text=euros+",";
if (cents<10) {
text=text+"0";
}
text=text+cents+" €";
Alexander
--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so".
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so".