To the first question, use single quotes to delimit the string:
Code:
bracelets.desc[16]='<span class="wooo" price="True" text="add to cart">0</span>'
For the second question I'd try editing spicyradio.net/JaDazzle/wooo/js/bloooming.woooshop.js where it has:
Code:
$('.shopme p').click(function(){
var pid = $(this).attr('rel');
$('body').prepend('<div class="sh . . .
Make that:
Code:
$('.shopme p').live('click', function(){
var pid = $(this).attr('rel');
$('body').prepend('<div class="sh . . .
I'm not sure if you can access that file, or if the change will help. But it's worth a shot.
Browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks