Subversion Repositories SmartDukaan

Rev

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

Rev 2924 Rev 2931
Line 144... Line 144...
144
	
144
	
145
	jQuery.ajax({
145
	jQuery.ajax({
146
		type: "GET",
146
		type: "GET",
147
		url: "/estimate/" + $("#zipcode").val() + "_" + itemId,
147
		url: "/estimate/" + $("#zipcode").val() + "_" + itemId,
148
		beforeSend: function()	{
148
		beforeSend: function()	{
149
			$("#days").html("<img src='/images/loader_l.gif'>");
149
			$("#shipping_time").html("Within <img src='/images/loader_l.gif'> business days");
150
		},
150
		},
151
		success: function(msg)	{
151
		success: function(msg)	{
152
			$("#shipping_time").html(msg);
152
			$("#shipping_time").html(msg);
153
		}
153
		}
154
	});
154
	});