Hi, thanks for the prompt reply
here is a piece of the code:
<?php
global $wp_query;
$image_width = get_option(‘product_image_width’);
/*
* Most functions called in this page can be found in the wpsc_query.php file
*/
jQuery(function($) {
$(“form.product_form, .wpsc-add-to-cart-button-form”).die(‘submit’).live(‘submit’, function() {
return confirm(‘Proceed to Checkout?’);
});
});
?>