IE JavaScript error with jQuery click-n-drag script
Posted: Tue Oct 23, 2007 12:18 pm
This jQuery when removed (and DHTML enabled on my site at least locally) is what I've figured out to be the last script causing errors in all versions of IE for me...
I've tried adding something like function hide_from_ie() {if (!document.all) {//script here}} though that accomplished nothing. What can I do to make IE sit down and shut up? 
Code: Select all
$(document).ready(function() {$('#prompts').Draggable({containment : 'parent', ghosting: true, opacity: 0.5, fx: 300, handle: '#promptsspan', zIndex: 1000,});});