Browse Source

Edited README via GitHub

Robin Herbots 14 years ago
parent
commit
f1f44d3215
1 changed files with 3 additions and 3 deletions
  1. 3 3
      README

+ 3 - 3
README

@@ -107,12 +107,12 @@ $(document).ready(function(){
    $("#number").val(12345); 
 });
 
-with the autounmaskoption you can change the return of $.fn.val  to unmaskedvalue or the maskedvalue
+with the autoUnmaskoption you can change the return of $.fn.val  to unmaskedvalue or the maskedvalue
 
 $(document).ready(function(){
-   	$('#<%= tbDate.ClientID%>').inputmask({ "mask": "d/m/y", 'autounmask' : true});	//  value: 23/03/1973
+   	$('#<%= tbDate.ClientID%>').inputmask({ "mask": "d/m/y", 'autoUnmask' : true});	//  value: 23/03/1973
 
-	alert($('#<%= tbDate.ClientID%>').val());	// shows 23031973     (autounmask: true)
+	alert($('#<%= tbDate.ClientID%>').val());	// shows 23031973     (autoUnmask: true)
 });
 
 add custom definitions