I have my personal information page to allow the user to enter in the name and address etc and using validation like in the starter kit so make sure certain fields are entered the valadation works fine if i have a field blank it alerts me to fill in it but if all the required fields are filled in it relads the personal information page instead of loading the shipping info page
I did some debugging into this and worked out the code isn't getting passed the l;ine of code sending the form data to the updateOrderProperties function
I tried wrapping this line of code in a try catch and get the error
"Type Error: Cannot call method split of underfined"
I can't work out what is underfined and why I have teh following code
I can output each field value correctly in alert boxes and get to alert test1 but not alert test2
can you see what I have done wrong
function sendCustomerInformation() { var paymentInformation = jQuery("#paymentInformation"), shippingInformation = jQuery("#shippingInformation"); /* We fetch the information from the form and creates an object that can be sent to the server as a form POST submit */ var formObj = { company: paymentInformation.find("#company").val(), title: paymentInformation.find("#title").val(), firstName: paymentInformation.find("#firstName").val(), lastName: paymentInformation.find("#lastName").val(), streetAddress: paymentInformation.find("#streetAddress").val(), city: paymentInformation.find("#city").val(), county: paymentInformation.find("#county").val(), postCode: paymentInformation.find("#postCode").val(), email: paymentInformation.find("#email").val(), phone: paymentInformation.find("#phone").val(), mobile: paymentInformation.find("#mobile").val(), comments: jQuery("#comments").val(), shipping_company: shippingInformation.find("#shippingCompany").val(), shipping_title: shippingInformation.find("#shippingTitle").val(), shipping_firstName: shippingInformation.find("#shippingFirstName").val(), shipping_lastName: shippingInformation.find("#shippingLastName").val(), shipping_streetAddress: shippingInformation.find("#shippingStreetAddress").val(), shipping_city: shippingInformation.find("#shippingCity").val(), shipping_county: shippingInformation.find("#shippingCounty").val(), shipping_postCode: shippingInformation.find("#shippingPostCode").val() };
//Simple validation var pageValidateText = ''; if (formObj.title === '') { pageValidateText += '\n' + paymentInformation.find("#title").prev().text(); } if (formObj.lastName === '') { pageValidateText += '\n' + paymentInformation.find("#lastName").prev().text(); } if (formObj.streetAddress === '') { pageValidateText += '\n' + paymentInformation.find("#streetAddress").prev().text(); } if (formObj.postCode === '') { pageValidateText += '\n' + paymentInformation.find("#postCode").prev().text(); } if (formObj.email === '') { pageValidateText += '\n' + paymentInformation.find("#email").prev().text(); } if (formObj.phone === '') { pageValidateText += '\n' + paymentInformation.find("#phone").prev().text(); } if (pageValidateText != '') { //The form does not validate and we pop up the result pageValidateText = 'Remember to fill out' + pageValidateText; alert(pageValidateText); return false; //Return false and the browser will not send the user to the next step } /* The properties is sent to the server with a syncronous call This way we lock the UI and can redirect the user. */ try { alert("test1"); TeaCommerce.updateOrderProperties(formObj, { async: false }); } catch(e) { alert(e); } alert("test2"); return true; //Return true and the browser will send the user to the next step }
Also when I click on submit shipping and payment info to load the accept order it stays on the shipping info page again the validation works if a payment or shipping method hasn't been selected
Still having problems with this? If you do you will have to start debugging your javascript. Do the following:
1. Try and remove properties from the formObj until it starts working again. 2. After that you can hopefully see which properties where giving you the problems and then start looking at why. If it's not obvious you must check it/them with firebug to see what their values are.
I am still having problems I have tried removing all properties but done of them fix the problem when debugging the code all the values in firebug are correct as the values i entered into the form
Rune could it be that its trying to post the form instead of doing a normal javascript base call? In the Tea Commerce code there is a split call in the method that tries to parse the form when doing the smart form post base methods.
I have just tried testing the cart process from basket to accept order form with the following calls in try catch code each 1 errors with TypeError: Cannot call method split of undefined. When I get to the accept order form the customer information in the personal information, shipping price and payment price is displayed dispite the error but the shipping information in the personal information isn't
When I firebug the personal information page I get the response below as far as I can see all looks fine. All the data i entered for all the textboxes on the form and listed with all the order information can you double check nothing else is need or anything cheers
in Chrome I get the error TypeError method split of underfined
in Firefox I get the error Type Error Cart.attr("class") is undefined
{"OrderPropertiesUpdated":[{"Id":0,"Alias":"company","Value":"company value"},{"Id":0,"Alias":"title","Value":"title value"},{"Id":0,"Alias":"firstName","Value":"first name value"},{"Id":0,"Alias":"lastName","Value":"last name value"},{"Id":0,"Alias":"streetAddress","Value":"street address value "},{"Id":0,"Alias":"city","Value":"city value"},{"Id":0,"Alias":"county","Value":"county value"},{"Id":0,"Alias":"postCode","Value":"postcode value"},{"Id":0,"Alias":"email","Value":"email value"},{"Id":0,"Alias":"phone","Value":"phone value"},{"Id":0,"Alias":"mobile","Value":"mobile value"},{"Id":0,"Alias":"comments","Value":"comment value"},{"Id":0,"Alias":"shipping_company","Value":"shipping company value"},{"Id":0,"Alias":"shipping_title","Value":"shipping title value"},{"Id":0,"Alias":"shipping_firstName","Value":"shipping first name value"},{"Id":0,"Alias":"shipping_lastName","Value":"shipping last name value"},{"Id":0,"Alias":"shipping_streetAddress","Value":"shipping street address value"},{"Id":0,"Alias":"shipping_city","Value":"shipping city value"},{"Id":0,"Alias":"shipping_county","Value":"shipping county value"},{"Id":0,"Alias":"shipping_postCode","Value":"shipping postcode value"}],"Order":{"Id":305,"Country":{"Id":1,"Name":"United Kingdom"},"CreatedDate":"\/Date(1333617715190+0100)\/","Currency":{"CultureName":"en-GB","ISOCode":"GBP","Id":4},"IsOrder":false,"MemberId":null,"ModifiedDate":"\/Date(1333618378750+0100)\/","Name":"ORDER-305","OrderDate":"\/Date(1333616958487+0100)\/","OrderLines":[{"Id":656,"IsUnique":true,"NodeId":1244,"Properties":[{"Id":2963,"Alias":"nodeName","Value":"Adnet Mirror"},{"Id":2964,"Alias":"productMaterial","Value":"1"},{"Id":2965,"Alias":"productColour","Value":"1717"},{"Id":2966,"Alias":"productFinish","Value":"1"},{"Id":2967,"Alias":"productSize","Value":"1826"},{"Id":2968,"Alias":"priceCalculated","Value":"true"}],"Quantity":1,"TotalPrice":539.00004000,"TotalPriceFormatted":"£539.00","TotalPriceFormattedNoSymbol":"539.00","TotalPriceWithoutVAT":449.1667,"TotalPriceWithoutVATFormatted":"£449.17","TotalPriceWithoutVATFormattedNoSymbol":"449.17","TotalVAT":89.83334000,"TotalVATFormatted":"£89.83","TotalVATFormattedNoSymbol":"89.83","UnitPrice":539.00004000,"UnitPriceFormatted":"£539.00","UnitPriceFormattedNoSymbol":"539.00","UnitPriceWithoutVAT":449.1667,"UnitPriceWithoutVATFormatted":"£449.17","UnitPriceWithoutVATFormattedNoSymbol":"449.17","UnitVAT":89.83334000,"UnitVATFormatted":"£89.83","UnitVATFormattedNoSymbol":"89.83","VAT":0.2000,"VATPercent":"20"}],"OrderStatus":{"DictionaryItemName":"","Id":1,"Name":"New"},"Payment":{"DictionaryItemName":"","Fee":0.0000,"FeeFormatted":"£0.00","FeeFormattedNoSymbol":"0.00","FeeVAT":0.0000,"FeeVATFormatted":"£0.00","FeeVATFormattedNoSymbol":"0.00","FeeWithoutVAT":0,"FeeWithoutVATFormatted":"£0.00","FeeWithoutVATFormattedNoSymbol":"0.00","Id":4,"MediaId":null,"Name":"PayPal"},"PaymentStatus":null,"Properties":[{"Id":810,"Alias":"company","Value":"company value"},{"Id":811,"Alias":"title","Value":"title value"},{"Id":812,"Alias":"firstName","Value":"first name value"},{"Id":813,"Alias":"lastName","Value":"last name value"},{"Id":814,"Alias":"streetAddress","Value":"street address value "},{"Id":815,"Alias":"city","Value":"city value"},{"Id":816,"Alias":"county","Value":"county value"},{"Id":817,"Alias":"postCode","Value":"postcode value"},{"Id":818,"Alias":"email","Value":"email value"},{"Id":819,"Alias":"phone","Value":"phone value"},{"Id":820,"Alias":"mobile","Value":"mobile value"},{"Id":821,"Alias":"comments","Value":"comment value"},{"Id":822,"Alias":"shipping_company","Value":"shipping company value"},{"Id":823,"Alias":"shipping_title","Value":"shipping title value"},{"Id":824,"Alias":"shipping_firstName","Value":"shipping first name value"},{"Id":825,"Alias":"shipping_lastName","Value":"shipping last name value"},{"Id":826,"Alias":"shipping_streetAddress","Value":"shipping street address value"},{"Id":827,"Alias":"shipping_city","Value":"shipping city value"},{"Id":828,"Alias":"shipping_county","Value":"shipping county value"},{"Id":829,"Alias":"shipping_postCode","Value":"shipping postcode value"}],"Shipping":{"DictionaryItemName":"","Fee":49.999999999999999999999999998,"FeeFormatted":"£50.00","FeeFormattedNoSymbol":"50.00","FeeVAT":8.333333333333333333333333333,"FeeVATFormatted":"£8.33","FeeVATFormattedNoSymbol":"8.33","FeeWithoutVAT":41.666666666666666666666666665,"FeeWithoutVATFormatted":"£41.67","FeeWithoutVATFormattedNoSymbol":"41.67","Id":2,"MediaId":null,"Name":"Courier"},"TotalPrice":589.00004000000000000000000000,"TotalPriceFormatted":"£589.00","TotalPriceFormattedNoSymbol":"589.00","TotalPriceWithoutFees":539.00004000,"TotalPriceWithoutFeesFormatted":"£539.00","TotalPriceWithoutFeesFormattedNoSymbol":"539.00","TotalPriceWithoutFeesWithoutVAT":449.1667,"TotalPriceWithoutFeesWithoutVATFormatted":"£449.17","TotalPriceWithoutFeesWithoutVATFormattedNoSymbol":"449.17","TotalPriceWithoutVAT":490.83336666666666666666666666,"TotalPriceWithoutVATFormatted":"£490.83","TotalPriceWithoutVATFormattedNoSymbol":"490.83","TotalQuantity":1,"TotalVAT":98.16667333333333333333333333,"TotalVATFormatted":"£98.17","TotalVATFormattedNoSymbol":"98.17","TotalVATWithoutFees":89.83334000,"TotalVATWithoutFeesFormatted":"£89.83","TotalVATWithoutFeesFormattedNoSymbol":"89.83","Transaction":{"PaymentAmount":null,"PaymentAmountFormatted":"£0.00","PaymentAmountFormattedNoSymbol":"0.00","PaymentCardNumber":null,"PaymentCardType":null,"PaymentTransactionId":null},"UmbracoLanguageId":0,"VAT":0.2000,"VATGroupId":2,"VATPercent":"20"}}
Sounds like "cart" may be undefined and the only place it can happen in the standard code is in the updateCartUI method. Thats if you use an unchanged teaCommerce_Simple.js file. Only problem is that that should'nt happen with jQuery behind the wheel. Have you changed anything to the javascripts?
The only bits I have changed in the teaCOmmerce-Simple.js file is in the updateCartUI I have changed the update cart content to match by basket and the sendCustomerInformation to include the fields I want to include on the page. The code I now have for each is both below is anything wrong with any of it
function sendCustomerInformation() { var paymentInformation = jQuery("#paymentInformation"), shippingInformation = jQuery("#shippingInformation"); /* We fetch the information from the form and creates an object that can be sent to the server as a form POST submit */ var formObj = { company: paymentInformation.find("#company").val(), title: paymentInformation.find("#title").val(), firstName: paymentInformation.find("#firstName").val(), lastName: paymentInformation.find("#lastName").val(), streetAddress: paymentInformation.find("#streetAddress").val(), city: paymentInformation.find("#city").val(), county: paymentInformation.find("#county").val(), postCode: paymentInformation.find("#postCode").val(), email: paymentInformation.find("#email").val(), phone: paymentInformation.find("#phone").val(), mobile: paymentInformation.find("#mobile").val(), comments: jQuery("#comments").val(), shipping_company: shippingInformation.find("#shippingCompany").val(), shipping_title: shippingInformation.find("#shippingTitle").val(), shipping_firstName: shippingInformation.find("#shippingFirstName").val(), shipping_lastName: shippingInformation.find("#shippingLastName").val(), shipping_streetAddress: shippingInformation.find("#shippingStreetAddress").val(), shipping_city: shippingInformation.find("#shippingCity").val(), shipping_county: shippingInformation.find("#shippingCounty").val(), shipping_postCode: shippingInformation.find("#shippingPostCode").val() };
//Simple validation var pageValidateText = ''; if (formObj.title === '') { pageValidateText += '\n' + paymentInformation.find("#title").prev().text(); } if (formObj.lastName === '') { pageValidateText += '\n' + paymentInformation.find("#lastName").prev().text(); } if (formObj.streetAddress === '') { pageValidateText += '\n' + paymentInformation.find("#streetAddress").prev().text(); } if (formObj.postCode === '') { pageValidateText += '\n' + paymentInformation.find("#postCode").prev().text(); } if (formObj.email === '') { pageValidateText += '\n' + paymentInformation.find("#email").prev().text(); } if (formObj.phone === '') { pageValidateText += '\n' + paymentInformation.find("#phone").prev().text(); } if (pageValidateText != '') { //The form does not validate and we pop up the result pageValidateText = 'Remember to fill out' + pageValidateText; alert(pageValidateText); return false; //Return false and the browser will not send the user to the next step }
/* The properties is sent to the server with a syncronous call This way we lock the UI and can redirect the user. */ try { TeaCommerce.updateOrderProperties(formObj, { async: false }); } catch(e) { alert(e); } return true; //Return true and the browser will send the user to the next step }
I have had a look through the starter kit code and my code
In your cart_step02.xslt file submit button you have an id of id="next" and in your teacommerce-Advanced.js file u have jQuery('#cart.stepProgress2 #next').live("click", function ()
In my PersonalInformation.cshtml fiel I have a submit button with id="personalInfoSubmit" and in my teacommerce-Advanced.jsfile I have jQuery('#personalInfoSubmit').live("click", function ()
do I need to call the cart I have tried #cart.stepProgress and just #cart but it doesn't work i put an alert("test"); right after it and it didn't get hit
Can't get passed personal-information
I have my personal information page to allow the user to enter in the name and address etc and using validation like in the starter kit so make sure certain fields are entered the valadation works fine if i have a field blank it alerts me to fill in it but if all the required fields are filled in it relads the personal information page instead of loading the shipping info page
I did some debugging into this and worked out the code isn't getting passed the l;ine of code sending the form data to the updateOrderProperties function
I tried wrapping this line of code in a try catch and get the error
"Type Error: Cannot call method split of underfined"
I can't work out what is underfined and why I have teh following code
I can output each field value correctly in alert boxes and get to alert test1 but not alert test2
can you see what I have done wrong
function sendCustomerInformation() {
var paymentInformation = jQuery("#paymentInformation"),
shippingInformation = jQuery("#shippingInformation");
/*
We fetch the information from the form and creates
an object that can be sent to the server as a form
POST submit
*/
var formObj = {
company: paymentInformation.find("#company").val(),
title: paymentInformation.find("#title").val(),
firstName: paymentInformation.find("#firstName").val(),
lastName: paymentInformation.find("#lastName").val(),
streetAddress: paymentInformation.find("#streetAddress").val(),
city: paymentInformation.find("#city").val(),
county: paymentInformation.find("#county").val(),
postCode: paymentInformation.find("#postCode").val(),
email: paymentInformation.find("#email").val(),
phone: paymentInformation.find("#phone").val(),
mobile: paymentInformation.find("#mobile").val(),
comments: jQuery("#comments").val(),
shipping_company: shippingInformation.find("#shippingCompany").val(),
shipping_title: shippingInformation.find("#shippingTitle").val(),
shipping_firstName: shippingInformation.find("#shippingFirstName").val(),
shipping_lastName: shippingInformation.find("#shippingLastName").val(),
shipping_streetAddress: shippingInformation.find("#shippingStreetAddress").val(),
shipping_city: shippingInformation.find("#shippingCity").val(),
shipping_county: shippingInformation.find("#shippingCounty").val(),
shipping_postCode: shippingInformation.find("#shippingPostCode").val()
};
//Simple validation
var pageValidateText = '';
if (formObj.title === '') {
pageValidateText += '\n' + paymentInformation.find("#title").prev().text();
}
if (formObj.lastName === '') {
pageValidateText += '\n' + paymentInformation.find("#lastName").prev().text();
}
if (formObj.streetAddress === '') {
pageValidateText += '\n' + paymentInformation.find("#streetAddress").prev().text();
}
if (formObj.postCode === '') {
pageValidateText += '\n' + paymentInformation.find("#postCode").prev().text();
}
if (formObj.email === '') {
pageValidateText += '\n' + paymentInformation.find("#email").prev().text();
}
if (formObj.phone === '') {
pageValidateText += '\n' + paymentInformation.find("#phone").prev().text();
}
if (pageValidateText != '') {
//The form does not validate and we pop up the result
pageValidateText = 'Remember to fill out' + pageValidateText;
alert(pageValidateText);
return false; //Return false and the browser will not send the user to the next step
}
/*
The properties is sent to the server with a syncronous call
This way we lock the UI and can redirect the user.
*/
try {
alert("test1");
TeaCommerce.updateOrderProperties(formObj, { async: false });
}
catch(e) {
alert(e);
}
alert("test2");
return true; //Return true and the browser will send the user to the next step
}
Hi Phil
Try and do something like this and also have it in a try catch and see if you still get an error.
TeaCommerce.updateOrderLineProperty( nodeId, 'yourAlias', 'test' );
Kind regards
Anders
Its not the updateOrderLineProperty method i'm trying to all its the updateOrderProperties to save the payment and shipping address
I know - my idea was to test a basic scenario to know where to look for the error.
Kind regards
Anders
Ah ok sorry that worked all went through without any errors and loaded the shiiping info page
Also when I click on submit shipping and payment info to load the accept order it stays on the shipping info page again the validation works if a payment or shipping method hasn't been selected
Which values do you have here in your generel settings?
Order name prefix - ORDER-
First name property alias - firstName
last name property alias - lastName
E-mail property alias - email
use cookies ticked
Cookie timeout - 24
Prices in DB incl. VAT - ticked
VAT group property alias - blank
Master product property alias - blank
Order line property aliases - productTitle, productCode
Confirmation E-mail [email protected]
Hi Phil,
Still having problems with this? If you do you will have to start debugging your javascript. Do the following:
1. Try and remove properties from the formObj until it starts working again.
2. After that you can hopefully see which properties where giving you the problems and then start looking at why. If it's not obvious you must check it/them with firebug to see what their values are.
/Rune
Hi Rune
I am still having problems I have tried removing all properties but done of them fix the problem when debugging the code all the values in firebug are correct as the values i entered into the form
Phil
Rune could it be that its trying to post the form instead of doing a normal javascript base call? In the Tea Commerce code there is a split call in the method that tries to parse the form when doing the smart form post base methods.
Kind regards
Anders
On the form page i submit the page with
This calls the teaCommerce_Advanced.js when calls the sendCustomerInformation method in teaCommerce-Simple.jsjQuery('.personalInfoSubmit').live("click", function () {
var validate = sendCustomerInformation();
if (validate) {
window.location.href = jQuery(this).attr('link');
}
return false;
});
If this is the case how to I send it the right way cheers phil
I have changed the code to as below but still getting the same error have i missed something
jQuery('#personalInfoSubmit').live("click", function () {
var validate = sendCustomerInformation();
if (validate) {
window.location.href = jQuery(this).attr('link');
}
return false;
});
I have just tried testing the cart process from basket to accept order form with the following calls in try catch code each 1 errors with TypeError: Cannot call method split of undefined. When I get to the accept order form the customer information in the personal information, shipping price and payment price is displayed dispite the error but the shipping information in the personal information isn't
TeaCommerce.setShippingMethod(shippingMethod, { async: false });
TeaCommerce.setPaymentMethod(paymentMethod, { async: false });
When I firebug the personal information page I get the response below as far as I can see all looks fine. All the data i entered for all the textboxes on the form and listed with all the order information can you double check nothing else is need or anything cheers
in Chrome I get the error TypeError method split of underfined
in Firefox I get the error Type Error Cart.attr("class") is undefined
Hi Phil,
Sounds like "cart" may be undefined and the only place it can happen in the standard code is in the updateCartUI method. Thats if you use an unchanged teaCommerce_Simple.js file. Only problem is that that should'nt happen with jQuery behind the wheel. Have you changed anything to the javascripts?
/Rune
The only bits I have changed in the teaCOmmerce-Simple.js file is in the updateCartUI I have changed the update cart content to match by basket and the sendCustomerInformation to include the fields I want to include on the page. The code I now have for each is both below is anything wrong with any of it
function sendCustomerInformation() {
var paymentInformation = jQuery("#paymentInformation"),
shippingInformation = jQuery("#shippingInformation");
/*
We fetch the information from the form and creates
an object that can be sent to the server as a form
POST submit
*/
var formObj = {
company: paymentInformation.find("#company").val(),
title: paymentInformation.find("#title").val(),
firstName: paymentInformation.find("#firstName").val(),
lastName: paymentInformation.find("#lastName").val(),
streetAddress: paymentInformation.find("#streetAddress").val(),
city: paymentInformation.find("#city").val(),
county: paymentInformation.find("#county").val(),
postCode: paymentInformation.find("#postCode").val(),
email: paymentInformation.find("#email").val(),
phone: paymentInformation.find("#phone").val(),
mobile: paymentInformation.find("#mobile").val(),
comments: jQuery("#comments").val(),
shipping_company: shippingInformation.find("#shippingCompany").val(),
shipping_title: shippingInformation.find("#shippingTitle").val(),
shipping_firstName: shippingInformation.find("#shippingFirstName").val(),
shipping_lastName: shippingInformation.find("#shippingLastName").val(),
shipping_streetAddress: shippingInformation.find("#shippingStreetAddress").val(),
shipping_city: shippingInformation.find("#shippingCity").val(),
shipping_county: shippingInformation.find("#shippingCounty").val(),
shipping_postCode: shippingInformation.find("#shippingPostCode").val()
};
//Simple validation
var pageValidateText = '';
if (formObj.title === '') {
pageValidateText += '\n' + paymentInformation.find("#title").prev().text();
}
if (formObj.lastName === '') {
pageValidateText += '\n' + paymentInformation.find("#lastName").prev().text();
}
if (formObj.streetAddress === '') {
pageValidateText += '\n' + paymentInformation.find("#streetAddress").prev().text();
}
if (formObj.postCode === '') {
pageValidateText += '\n' + paymentInformation.find("#postCode").prev().text();
}
if (formObj.email === '') {
pageValidateText += '\n' + paymentInformation.find("#email").prev().text();
}
if (formObj.phone === '') {
pageValidateText += '\n' + paymentInformation.find("#phone").prev().text();
}
if (pageValidateText != '') {
//The form does not validate and we pop up the result
pageValidateText = 'Remember to fill out' + pageValidateText;
alert(pageValidateText);
return false; //Return false and the browser will not send the user to the next step
}
/*
The properties is sent to the server with a syncronous call
This way we lock the UI and can redirect the user.
*/
try {
TeaCommerce.updateOrderProperties(formObj, { async: false });
}
catch(e) {
alert(e);
}
return true; //Return true and the browser will send the user to the next step
}
Hi Phil,
Try removing stuff from the javascript and see if you can get it working. That way you can narrow the problem down.
/Rune
Hi Rune
I have tried removing stuf from the sendCustomerInformation and it gives teh same error everytime. when i tried
When i tried removing the code below (the only code in updateCartUI thats different that the starter kit it still gives teh same error.
When i tried removing I got the error Reference Error: cartClass is not defined
I tried removing got the TypeError method split of underfined
Could it be an error with the line of code
I have had a look through the starter kit code and my code
In your cart_step02.xslt file submit button you have an id of id="next" and in your teacommerce-Advanced.js file u have jQuery('#cart.stepProgress2 #next').live("click", function ()
In my PersonalInformation.cshtml fiel I have a submit button with id="personalInfoSubmit" and in my teacommerce-Advanced.jsfile I have jQuery('#personalInfoSubmit').live("click", function ()
do I need to call the cart I have tried #cart.stepProgress and just #cart but it doesn't work i put an alert("test"); right after it and it didn't get hit
I have solved the problem I needed to wrap the form inside a div with id & class of cart
is working on a reply...