Hi,
Is it possible to append extra information into the E-Junkie cart window like purchasing information, special offers and other text? I tried using the following jQuery code to append text onto the #tdHeader container:
<script language="javascript" type="text/javascript">
var $jec = jQuery.noConflict();
jQuery(document).ready(function($jec){
$jec("#topCart").appendTo("#tdHeader");
});
</script>
<div id="topCart">Some test content here</div>
But this code does not seem to be effective in iFrames. Also tried replacing:
jQuery("#imgHeader").attr("src", "http://www.example.com/image.jpg");
with
jQuery("#imgHeader").attr("innerHTML", "Some test content here");
But this did not work and broke the cart window. The box.js file looks like it is compressed and not editable. I'm running out of ideas. Other people who have setup custom carts have used image replacement for text, but this is something I want to avoid. It would be great if it were possible to add extra content above or below the item table.
Also a couple of months back, there was a link on this forum for someone who had built a custom E-Junkie cart in the style of a single page order-form. They were selling digital downloads. The website had a white colour scheme and users were invited to play around with a test version to see how it worked. It didn't use a modal window. Any idea if this post still exists? I searched but couldn't find anything.