Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 316 Bytes

File metadata and controls

20 lines (14 loc) · 316 Bytes

TUS.Float

TUS.Float is jquery plugin to except only float value. coffee for me?

Plugin Parameters

  1. decimal - decimal point, by default 2.

Sample Code

Sample code as below.

$("#float").keyup(function(){
	$(this).tusfloat({
		decimal: 2
	});
});