﻿<!--// ---------------------------------+
//Latin Only User Details
//Developed by Ehsan Chavoshi (ehsan@chavoshi.com) , http://chavoshi.com
//Please Dont remove above lines :)
//--------------------------------->
$(document).ready(function(){
	$('<div class="errorbox" style="display: none;left:0;position:fixed;top:0px;width:100%;" id="errmsg">لطفا فقط از کاراکترهای لاتین و کاما استفاده کنید. (کیبورد خود را روی انگلیسی تنظیم کنید)</div><br />').appendTo('body');
	$.fn.delay = function( time, name ) {

		return this.queue( ( name || "fx" ), function() {
			var self = this;
			setTimeout(function() { $.dequeue(self); } , time );
		} );

	};
	// called when key is pressed in textbox
	$("input:text", document.forms[0]).keypress(function (e)  
			{ 
		// if the letter is not digit then display error and don't type anything
		if( e.which!=8 && e.which!=0 && e.which!=32 && e.which!=95 && !( (e.which >= 44 && e.which <= 46) ||(e.which >= 64 && e.which <= 90) || (e.which >= 97 && e.which<= 122) || (e.which >= 48 && e.which<= 57)))
		{
			// display error message
			if (!$("#errmsg").is(':visible') ) {$("#errmsg").slideDown(1000).delay(4000).slideUp(1000); }
			return false;
		}	
			});

});
