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!

Please help, begginer needing help 1

Status
Not open for further replies.

samlewis

ISP
Dec 4, 2008
1
GB
hello
i have been making websites for many years now but now i am attempting to add a fish eye menu.
i have found several sources that offer java script code.

however i dont know how to make it work and intergrate it into a html document,
(if it helps i use dreamweaver cs4)

yours
sam
 
Its difficult to help you intergrate a script which we can't see, however using javascript within a HTML document is simple...

Code:
<html>
<head>

<!-- Internal javascript (javascript code goes within script tags) -->
[blue]<script type="text/javascript">

</script>[/blue]

<!-- External javascript (javascript code goes in external file) -->
[blue]<script type="text/javascript" src="fisheyemenu.js"></script>[/blue]

</head>
<body>
</body>
</html>

You would then probably need to use a javascript onhover event within your menu html code to call a javascript function. If you have any further issues you should post your code here.

Chris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top