http://pasite.org/code/281?theme=lazy
im getting error, which i dont get on firefox or chrome.
it says on line 235
this.movie.setText( this.clipText );
this.movie.setHandCursor( this.handCursorEnabled );
when i comment the above two line, then i dont get any error, but my script wont work anymore eaither. i dont know why its showing this error, everything is fine in firefox and chrome.
EDITED this error shows on mouse over, sence zeroClipboard gets set on mouseOver
Error is:
line: 235
char: 5
Error: Object doesn't support this property or method
code: 0
URL:....
my jQuery for setting the ZeroClipboard on top of the input box
// coping method on inputbox's
ZeroClipboard.setMoviePath('/javascript/jquery/ZeroClipboard.swf');
// copying share input boxs
$("input[name='htmlcode'], input[name='directlink'], input[name='emaillink'], input[name='imgcode']").live('mouseover', function() {
clip = new ZeroClipboard.Client();
clip.setHandCursor(true);
clip.setText($(this).val());
var width = $(this).width();
var height = $(this).height()+10;
var flash_movie = '<div>'+clip.getHTML(width, height)+'</div>';
flash_movie = $(flash_movie).css({
position: 'relative',
marginBottom: -height,
width: width,
height: height,
zIndex: 101
})
.click(function() {
$(this).next('input').indicator({className: 'copied', wrapTag: 'div', text: 'Copied!', fadeOut: 2000, display: 'after'});
})
.insertBefore(this);
