Hi this is my first post, hi looks like a great forum. It's also my first day trying out jquery and i'm really impressed so far. I have done some java, some javascript and php etc but it was some time ago. So i tested some stuff on a freebie website ..
and the jquery function works great in IE, just a toggle that hides a div tag containing an object tag (swf video)
the div is hidden and the video continues to play.
- $(document).ready(function(){
$("button").click(function(){
$("#vid").slideToggle("slow");
});
But in Firefox when the div is hidden the video stops and when the toggle function shows the div again the object tag is reloaded and the video starts from the beginning again! frustrating ..
So my question is, am i missing something obvious? How do i achieve a uniform effect in both browsers? Should I be using a different approach? Any help would be great .. thanks in advance.