Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
javascript for drop down menus
Old 04-10-2005, 01:56 AM javascript for drop down menus
Super Talker

Posts: 110
Trades: 0
check out this site:

http://www.nyse.com/

I need to develop the pull down menu just like in the above mentioned site...
eg About The NSE , Market Information etc..


can ne body help me..
__________________

Please login or register to view this content. Registration is FREE
varunbihani is offline
Reply With Quote
View Public Profile Visit varunbihani's homepage!
 
 
Register now for full access!
Old 04-10-2005, 04:00 PM
Jared's Avatar
Skilled Talker

Posts: 52
Location: St. Anthony, ID
Trades: 0
You'll want to search for a free script on that one. If you aren't experienced with javascript, this will be a very large pain in the butt. Do a search for 'free javascripts'.
Jared is offline
Reply With Quote
View Public Profile Visit Jared's homepage!
 
Old 04-10-2005, 05:59 PM
0beron's Avatar
Defies a Status

Posts: 1,832
Location: Somewhere else entirely
Trades: 0
That navigation menu is not done in Javascript. It's an interactive flash animation. You could probably achieve the same effect in Javascript, but as Jared says, it'll be a real pain.
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';

Please login or register to view this content. Registration is FREE
(aka MSN handwriting for forums)
0beron is offline
Reply With Quote
View Public Profile Visit 0beron's homepage!
 
Old 04-11-2005, 02:26 PM
Jared's Avatar
Skilled Talker

Posts: 52
Location: St. Anthony, ID
Trades: 0
Quote:
That navigation menu is not done in Javascript. It's an interactive flash animation.
I didn't know that. It makes sense though. I've never done one of these, and what I have seen has been done with java.

In any case, good luck! It's not impossible, nothing is, just be prepared to work.
Jared is offline
Reply With Quote
View Public Profile Visit Jared's homepage!
 
Old 04-11-2005, 02:39 PM
Kaiman's Avatar
Extreme Talker

Posts: 237
Trades: 0
For a Javascript Dropdown Menu like the one on the NYSE website checkout this link:Dynamic Drive You can also accomplish this using CSS and Javascript, but unfortunately I don't have a link on hand for this method.

Hope that helps,

Kaiman

Storm King Website Design and Graphics
Kaiman is offline
Reply With Quote
View Public Profile
 
Old 04-12-2005, 08:13 AM
ibbo's Avatar
Super Spam Talker

Posts: 880
Location: Leeds UK
Trades: 0
Code:
<script>                                                                                
function toggleMenu(objectID) {
   var object = document.getElementById(objectID);
   if (object.style.display =='block')  object.style.display='none';
   else object.style.display='block';
   return;
}
</script>
                                                                                
<a onmouseover="javascript:toggleMenu('Menu')">Menu</a><br>
      <span style="display: none;" id="Menu">
         <a href="#">Link</a> <br />
         <a href="#">Link</a> <br />
         <a href="#">Link</a> <br />
         <a href="#">Link</a> <br />
         <a href="#">Link</a> <br />
      </span>
This will get you going, but you can do it with css alone so no js required.

ibbo
~
~
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Linux user #349545 :
(GNU/Linux)iD8DBQBAzWjX+MZAIjBWXGURAmflAKCntuBbuKCWenpm XoA7LNydllVQOwCf
ibbo is offline
Reply With Quote
View Public Profile Visit ibbo's homepage!
 
Old 04-12-2005, 10:06 PM
Jared's Avatar
Skilled Talker

Posts: 52
Location: St. Anthony, ID
Trades: 0
Nice ibbo! I've never seen togglemenu before, then again I've never looked to closely at these things either.

Just FYI varunbihani, you can put tables in the menu too to make it look more like the menus on the site you suggested.

Nifty, I'll remember this.
Jared is offline
Reply With Quote
View Public Profile Visit Jared's homepage!
 
Reply     « Reply to javascript for drop down menus
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 2.10921 seconds with 12 queries