Click here to Skip to main content
15,914,071 members

Comments by Member 9359591 (Top 11 by date)

Member 9359591 26-Oct-12 10:56am View    
Deleted
function Addtocart() {
$.each(items, function (a, items) {
if (Hash === item.Hash) {
$.each(item.Rates, function (r, Rate) {
Charges += Rate.Taxes + Rate.Fees;
$.each(Rate.Rates, function (rt, rate) {
});
});
str += "<p >";
str += "" +item.select + "<br/>" ;
str += "Details/Remove<br/>";
str += "Subtotal $" + "<br/>";
str += "Taxes And Fees $" + "<br/>";
str += "Total $" + "<br/>";
str += "</p>";
$('#cart').append(str);
$('#tcart').show();
return false;
}
});
}
}
Member 9359591 25-Oct-12 13:29pm View    
Thank you and good luck to you to..
Member 9359591 24-Oct-12 19:44pm View    
yes i did..
Member 9359591 24-Oct-12 13:01pm View    
Hi ajay, thank you for your response. but its not working. first thing its a button, actionlink is making it like a link. next is its not getting disabled
Member 9359591 24-Oct-12 10:49am View    
Can any one help. I'm getting it how i have to but theres an error on String CC. I have put String CC = "1111 2222 3333 4444"; its displaying XXXX XXXX XXXX 4444. But as per view i'm entering a card number, but on confirmation page i'm getting XXXX XXXX XXXX 4444. which i should'nt. As i'm defaulting the string to String CC = "1111 2222 3333 4444"; i'm getting that output as XXXX XXXX XXXX 4444. As per my question. for the number i enter in biling i should get the same format but for the numbers entered on my page.what can i do