Subversion Repositories SmartDukaan

Rev

Rev 23443 | Rev 23783 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23443 Rev 23569
Line 108... Line 108...
108
		console.log("unitPrice focus called");
108
		console.log("unitPrice focus called");
109
		var $element = $(this);
109
		var $element = $(this);
110
		$element.closest('tr').find('.insuranceAmount').attr("placeholder", "");
110
		$element.closest('tr').find('.insuranceAmount').attr("placeholder", "");
111
	});
111
	});
112
	
112
	
113
	$( "input.phone").blur(function() {
113
	$( "input.phone").change(function() {
114
		console.log("phone blur called");
114
		console.log("phone blur called");
115
		var mobileNumber = $(this).val();
115
		var mobileNumber = $(this).val();
116
		if(mobileNumber.length < 10) {
116
		if(mobileNumber.length < 10) {
117
			return;
117
			return;
118
		}
118
		}