var Widgets = window.Widgets || { };
Widgets.orders = {
initialize : function( ) {
jQuery('#sumbit1').live('click', function(){
Widgets.orders.submitOne();
});
jQuery('#sumbit2').live('click', function(){
Widgets.orders.submitTwo();
});
},
submitOne :function(num) {
jQuery.ajax({
type : "POST",
url: "/widgets/orders" ,
data: jQuery('#order_form').serialize(),
success: function(htmlText){
if (htmlText.status > 399) {
alert('OH NO!!! Something went wrong!!');
} else {
jQuery('#orders').html(htmlText);
}
},
dataType: 'html'
});
},
submitTwo :function(num) {
jQuery.ajax({
type : "POST",
url: "/blah/orders" ,
data: jQuery('#order_form').serialize(),
success: function(htmlText){
if (htmlText.status > 399) {
alert('OH NO!!! Something went wrong!!');
} else {
jQuery('#orders').html(htmlText);
}
},
dataType: 'html'
});
}
// Start it up
jQuery(function() {
Widgets.orders.initialize();
});
};