CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: 'this.menu'

Threaded View

  1. #1
    Join Date
    Apr 2008
    Posts
    4

    'this.menu'

    Hi every one I need someone to help me with javascript I'm receiving this error message -'this.menu' is not null or an object. its on this line:this.submenus = this.menu.getElementsByTagName("div");
    this is part of my code

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head id="_ctl0_Head1"><title>
    	Careers in pharmacy - login
    </title><link rel="stylesheet" type="text/css" 
    
    href="Admin/Design/spurintranet.css" /><link rel="stylesheet" type="text/css" href="Admin/Design/Menu.css" /><script type="text/javascript">
    
    function SDMenu(id) 
    {
    	if (!document.getElementById || !document.getElementsByTagName)
    		return false;
    		
    	this.menu = document.getElementById(id);
    	this.submenus = this.menu.getElementsByTagName("div");
    	this.remember = true;
    	this.speed = 3;
    	this.markCurrent = true;
    	this.oneSmOnly = true;
    }
    Last edited by PeejAvery; April 22nd, 2008 at 09:29 AM. Reason: Added code tags.

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured