I am trying to set
the width and height of an <object> tag that is being returned through a
JSON request.
this is what i am
doing..
$("video").set("html",
response.html);
$("video").getElement("object").setProperty("height",
"385");
$("video").getElement("object").setProperty("width",
"605");
Works fine in
FireFox but am getting an "Object does not support this method or property"
error in IE
Any
suggestions?
Steve