Number To Convert : 12345

Simple Div Input

$("#angka").terbilang({
	'output_div'	: "pesan2",
	'input_type'	: "text"
});
	
Terbilang :

Div input with prefix and postfix

$("#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
});
	
Terbilang :

Simple Form Input

$("#angka1").terbilang({
	'style'		: 1, 
	'output_div' 	: "pesan",		
});
	
Type Number Here :
Terbilang :

Try this Dynamic form Option

$("#convert").click(function(){
	$("#angka2").terbilang({
		'style'		: parseInt($("#styles").val()),
		'output_div' 	: "pesan4",		
		'awalan'	: $("#awalan").val(),
		'akhiran' 	: $("#akhiran").val()
	});
});
	
Style
Type Prefix :
Type Postfix :
Type Number Here :
Terbilang :
download source code here
<< back to article