One more note,
I'm not sure why you submit a thread here and it adds a semi-colon at the end of some href's. Just omit the semi-colon when you write your finished code...
8198/funny/movies/squash.avi">
instead of
8198/funny/movies/squash.avi";>
Fair enough; I do this all the time. First, get rid of any properties you won't usee (makes the html a little cleaner).
Try this:
<object id="mmPlayer"
name="mmPlayer"
classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"...
Works very well, with one caveat...the URL in 'parent.location.href' is hard-coded. I need to find a way to get the href value in the <a> tag from the <td> tag, hence:
<td onClick="javascriptFunction">
<a href="something.html">
</td>
I'm thinking something like...
Currently, I'm able to make a table cell "linkable" based on the href attribute in an <a> tag (the way Hotmail used to). IE uses the scripting...
function mClk(src)
{
if(event.srcElement.tagName == 'TD')
{
src.children.tags('a')[0].click();
}
}
...and naturally, this...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.