Is it possible to alter where certain devices appear in the browser support list for our implementation? We are having specific troubles with BB5 and would like to demote it to Grade C for our site, so wonder if this is possible. Or even if we can demote all grade B browsers to show the non JS version of the site.
Sorry if I posted this earlier, but ,y ocmputer crashed on post, and I could not find the posted message. I am trying to use the jMedia plugin to embed a youtube video on my page, but when I try, it doesn't do the replace (although if I use a normal swf, it works fine). Has anyone done this before that can help? HTML --------- <div id="flash_test">you need to get flash or enable javascript</div> JAVASCRIPT -------------------- $(document).ready(function(){ $("#flash_test").jmedia( {version:"8,0"}, {src:"http://www.youtube.com/v/hbr6wMiL83Y", width:352, height:288 }); });
I have been trying desperately to use jMedia to embed youtube videos onto my site, but everytime it doesn't replace the code. But if I put in a normal video, it works fine. Does anyone now how to accomplish this? JAVASCRIPT -------------------- <script type="text/javascript"> $(document).ready(function(){ $("#flash_test").jmedia( {version:"7"}, {src:"http://www.youtube.com/v/hbr6wMiL83Y", width:425, height:350 }); }); </script> HTML --------- <div id="flash_test">Flash Test</div>