Results 1 to 2 of 2

Thread: Cascading Menu with only intranet service

  1. #1
    Join Date
    Mar 2010
    Posts
    6
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default Cascading Menu with only intranet service

    Hello,

    I currently have an image map that has hot spots and when clicked gives the users a cascading menu using java. The company I work for has disabled internet access to various workstations so these menus no longer work. Is there a way to create the same thing without java or a web interface. They have strictly intra net now. Any ideas or suggestions would be greatly appreciated.

    I believe this is the line of code that is not allowing the menus to work because it is accessing an outside internet source

    <script type="text/javascript"
    src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    Any ideas on how to get it to work without going to this?

    Thanks,
    Angie
    Last edited by paankadu; 08-18-2011 at 03:51 PM. Reason: added line of code

  2. #2
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    just download the jquery script from here and place it on your own server.

    insted of this:

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

    you link to the script on your server:

    <script type="text/javascript" src="jquery.min.js"></script>

    It will work, you just have to get the path to the file right.

  3. The Following User Says Thank You to azoomer For This Useful Post:

    paankadu (08-19-2011)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •