Hi,
Is that possible that the url in ai() can be replaced by directories' path? And
can i set the URL in ai() using relative path, instead of full path?
thanks
url within ai()
Re: url within ai()
Hi,
Any of the following are acceptable urls :
Probably many more but you get the idea
Basically, anything that can be declared as a link in HTML can be declared as a url in the aI string
-- andy
Any of the following are acceptable urls :
Code: Select all
aI("text=test;url=http://www.milonc.com/");
aI("text=test;url=/");
aI("text=test;url=../../dir/");
aI("text=test;url=../../dir/link.html")
aI("text=test;url=javascript:alert()");
aI("text=test;url=file:///c:/cdrivefile.html");

Basically, anything that can be declared as a link in HTML can be declared as a url in the aI string
-- andy
Re: url within ai()
Thought I said that...Andy wrote:Basically, anything that can be declared as a link in HTML can be declared as a url in the aI string

John