Hi!

I think this is a simple question but I somehow cannot solve it
myself.
I'd like to remove those new Youtube-Headings on a blog by adding
'&showinfo=0' to the Youtube-URLs.

It works absolutely fine with the <embed>s by doing this:

$('embed').each(function(){
        var newname = $(this).attr('src')+'&showinfo=0';
        $(this).attr('src',newname);
});

Since the <object>-tag gets its parameters from the nested <param> I
somehow don't manage to access these.
How do I access the name-parameter of each object?

Thanks!
Frederik

Reply via email to