Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by JAG7

  1. JAG7

    playing windows media files in netscape

    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";>
  2. JAG7

    playing windows media files in netscape

    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=&quot;mmPlayer&quot; name=&quot;mmPlayer&quot; classid=&quot;CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95&quot...
  3. JAG7

    Clickable Table Cells

    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=&quot;javascriptFunction&quot;> <a href=&quot;something.html&quot;> </td> I'm thinking something like...
  4. JAG7

    Clickable Table Cells

    Currently, I'm able to make a table cell &quot;linkable&quot; 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...

Part and Inventory Search

Back
Top