Re: [jQuery] append quicktime plugin

2006-11-07 Thread bacca
hi html() works much better then append(). thank you for that one. but the plugin still wont load the streaming movie over rstp. all other kinds of quicktime content (images or mov over http) are working very well. so this seems to be an plugin problem and i have to try something else...

[jQuery] append quicktime plugin

2006-11-06 Thread burt bacharach
hi,i'm trying to append a quicktime movie using jquery.$(#qtmoviediv).append('embed src="" qtsrc=rtsp://some.streaming.content/movie.mov pluginspage= http://www.apple.com/quicktime/download/ autoplay=true type=video/quicktime width=320 height=240 loop=false controller=false name=qtmovie

Re: [jQuery] append quicktime plugin

2006-11-06 Thread Mike Alsup
i'm trying to append a quicktime movie using jquery. Use $().html(). I have a plugin for this if you're interested. Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] append quicktime plugin

2006-11-06 Thread jyl
i'm trying to append a quicktime movie using jquery. Use $().html(). I have a plugin for this if you're interested. Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ So since he wants to do append, it'd be

Re: [jQuery] append quicktime plugin

2006-11-06 Thread Mike Alsup
$(#qtDiv).html($(#qtDiv).html() . $newHTML) Yes, except with Javascript syntax instead of php. :-) var qtHtml = object.; var $qtDiv = $('#qtDiv'); $qtDiv.html($qtDiv.html() + qtHtml); ___ jQuery mailing list discuss@jquery.com