I am trying to use the script menu tree in a perl script.
Return to Recent Questions
Q:
I am trying to use the script menu tree in a perl script. I
would like to know if this is possible?
A:
You can use script menu tree in a perl script. See the example
below.
------------------ begin program
#!/usr/bin/perl
#!c:\perl\bin\perl
use CGI; # CGI library
use DBI; # Database library
print "Content-Type: text/html\n\n";
use CGI::Carp qw(fatalsToBrowser);
print '<head>
<!-- DHTML Menu -->
<noscript><a href=http://dhtml-menu.com/menu/>Javascript Menu by
DHTML-Menu.com</a></noscript>
<script type="text/javascript" language="JavaScript1.2">var dmWorkPath =
"menudir/";</script>
<script type="text/javascript" language="JavaScript1.2"
src="menudir/dmenu.js"></script>
<!-- (c) 2008, http://dhtml-menu.com --> </head>';
print "<table>";
print '<tr><td><script type="text/javascript" language="JavaScript1.2"
src="menudir/data-menu.js"></script></td></tr>';
print '<tr><td>second line</td></tr>';
print '</table>';
exit;
_______________________ end program
Return to Recent Questions
Related:
- March 12, 2009 - I don't understand, how can change place of the icon in button context menu...
- March 12, 2009 - I have problems with image paths when I create css menu vertical in DHTML Tuner.
- March 13, 2009 - Now we are having the "Incorrect Copyright" on our drop down menu maker...
- March 14, 2009 - I am having a problem with css styles in the floating javascript.
- March 14, 2009 - How do I enable javascript on the new browser, so I can see my java menu script?
- March 15, 2009 - I have problems with transitional effects in Firefox in the javascript menu navigation...
- March 15, 2009 - How can I disable items in menu con javascript?
- March 16, 2009 - Is there any way to keep a menu using javascript lit up when going to another page?
- March 16, 2009 - How can I change item width in the Vista templates in the net dynamic menu?
- March 18, 2009 - I am getting a Javascript error, when accessing any of the web navigation buttons.
- March 19, 2009 - How to get the css javascript menu to highlight and stay on the page you're viewing?
|