I need a textbox to start with the number 9, how do i do it? The textbox only accepts numbers but i need it to start with the number 9. I've tried it like this but it doesn't work.
$(document).ready(function () {
var $phone = $("#phone");
$phone.mask('900000000', {reverse: false});
});