$("#angka").terbilang({
'output_div' : "pesan2",
'input_type' : "text"
});
$("#angka").terbilang({
'style' : 3, //style 1=UPPER CASE,2=lower case,3=Title Case,4=Sentence case
'input_type' : "text", //input type (form or text) default value is form
'output_div' : "pesan3", //element's id to show the output
'awalan' : "# ", //prefix output
'akhiran' : "rupiah #", //postfix output
});
$("#angka1").terbilang({
'style' : 1,
'output_div' : "pesan",
});
Type Number Here :
$("#convert").click(function(){
$("#angka2").terbilang({
'style' : parseInt($("#styles").val()),
'output_div' : "pesan4",
'awalan' : $("#awalan").val(),
'akhiran' : $("#akhiran").val()
});
});
Style