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

path to different location than the site is on.

Status
Not open for further replies.

Irit

Programmer
Aug 21, 2001
9
0
0
US
Hi,
How do I link a document to the documents tree in a site, when the document is not on the same computer of the site. I tried with the IP in the tree.js :
gLnk(0, "Database.doc",
"//145.9.106.130/data/SHARE/BTS/SW/RFDS/RFDS_vob/docs/SW/Design/DB.doc", "Common project data storage."))
when gLnk in the second file is:
function gLnk(target, description, linkData, doc_descript)
{
fullLink = ""
if (target==0)
{
fullLink = "'"+linkData+"' target=\"basefrm\""
}
else
{
if (target==1)
fullLink = "' target=_blank"
else
fullLink = "' target=\"basefrm\""
}
linkItem = new Item(description, fullLink, doc_descript)
return linkItem
}
 
I have table list of images populated using asp,and when clicked.shows a url how to capture that,may be simple,,but iam a new javascript please let me know

Thnaks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top