http://www.networkdriven.com/qp/TriviaQuiz_xp5.htm
I like to have most of my menu links open in a separate window using the target=_blank parameter. This works well but doesn't give me the positioning from top and left of the screen. I have used the following parameters and I know they work with the IE 6.0 browser but don't know about other browsers and versions. Here is the code:
aI("text=Configuring Device Drivers;url=http://www.networkdriven.com/drivers.ht ... llbars=yes left=47 top=40 height=450;status=How To Install And Update Drivers");
Also, should I be using a semi colon between each of the targetfeatues parameters for proper syntax?
See any problems using this that I should be aware of?
Supported parameters for positioning links on my menu
Re: Supported parameters for positioning links on my menu
Tip: always use the Code button when posting code.rudy wrote:Here is the code:
aI("text=Configuring Device Drivers;url=http://www.networkdriven.com/drivers.ht ... llbars=yes left=47 top=40 height=450;status=How To Install And Update Drivers");
To be picky, you need 1 more ; in there after Drivers...
Code: Select all
aI("text=Configuring Device Drivers;url=http://www.networkdriven.com/drivers.htm;target=_blank;targetfeatures=scrollbars=yes left=47 top=40 height=450;status=How To Install And Update Drivers;");
A question for you. Where did you get this syntax for targetfeatures? From the Samples? Did it have extra ; shown?rudy wrote:Also, should I be using a semi colon between each of the targetfeatues parameters for proper syntax?
John
John wrote:
Code that was shown there did NOT have the extra ;
Here is the code example given:
I got the targetfeatures syntax from the Menu Sample 11.A question for you. Where did you get this syntax for targetfeatures? From the Samples? Did it have extra ; shown?
Code that was shown there did NOT have the extra ;
Here is the code example given:
Code: Select all
aI("text=Open Google;url=http://www.google.com;targetfeatures=width=300 height=300");
Rudy