Subversion Repositories SmartDukaan

Rev

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

Rev 1831 Rev 1842
Line 1... Line 1...
1
$(function(){
1
$(function(){
2
	$('#frmRegister #email').change(function(){
2
	$('#frmRegister #email').change(function(){
3
		$('#communicationEmail').val($(this).val());
3
		$('#communicationEmail').val($(this).val());
4
	});
4
	});
5
	
5
	
-
 
6
	$('#frmRegister').submit(function(){
-
 
7
		trackEventWithGA('Account', 'New User Register', $('#frmRegister #email').val());
-
 
8
	});
-
 
9
	
6
	$("#datepicker").datepicker({
10
	$("#datepicker").datepicker({
7
		changeMonth: true,
11
		changeMonth: true,
8
		changeYear: true
12
		changeYear: true
9
	});
13
	});
10
	
14
	
Line 49... Line 53...
49
				maxlength: 10
53
				maxlength: 10
50
			},
54
			},
51
			conditions: {
55
			conditions: {
52
				required: true
56
				required: true
53
			}
57
			}
54
		},
-
 
55
		submitHandler: function(form)	{
-
 
56
			trackEventWithGA('Account', 'New User Register', $('#frmRegister #email').val());
-
 
57
		}
58
		}
58
	});
59
	});
59
});
60
});
60
61