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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. vvcarpio

    Build an "a href" inside a "td" tag programmatically

    I got it to work. I basically rewrote the vbscript to javascript and changed: set objAttribute = document.createAttribute("onclick") objAttribute.nodeValue = "vbscript:viewAttachment " & intDocID objA.setAttributeNode obJAttribute set objAttribute = nothing to: objA.onclick =...
  2. vvcarpio

    Build an "a href" inside a "td" tag programmatically

    Oops again. It's still not working. Any help appreciated.
  3. vvcarpio

    Build an "a href" inside a "td" tag programmatically

    Sorry...it's working now. I must have had a silly typo in my code. My apologies. Thank you.
  4. vvcarpio

    Build an "a href" inside a "td" tag programmatically

    Hi. I'd like to build an "a href" tag inside a table "td" tag programmatically. Basically something like the following: <table> <tr> <td> <a href="javascript:void(0);" onclick="vbscript:viewAttachment 123" title="View document">View document</a> </td> </tr> </table> When I run my code below...

Part and Inventory Search

Back
Top