Subversion Repositories SmartDukaan

Rev

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

Rev 1809 Rev 1820
Line 1... Line 1...
1
// Ebizon Move script js into the file
1
// Ebizon Move script js into the file
2
 
2
 
3
$(document).ready(function(){
3
$(document).ready(function(){
4
	$('#frmProceedToPay').submit(function(){
4
	$('#frmProceedToPay').submit(function(){
5
		//Tracking this click for Google Analytics
5
		//Tracking this click for Google Analytics
6
		if(_gaq)	{
6
		if(_gaq && _gaq != null && _gaq != undefined)	{
7
			_gaq.push(['_trackEvent', 'Order', 'Proceed to Pay', "", 2]);
7
			_gaq.push(['_trackEvent', 'Order', 'Proceed to Pay', "", 2]);
8
		}
8
		}
9
		return true;
9
		return true;
10
	});
10
	});
11
 
11