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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Image Map doesnt work in NS (NS is a POS) 1

Status
Not open for further replies.

Karl Blessing

Programmer
Feb 25, 2000
2,936
US
I cant get this image map to work in NS, it works perfectly in IE

Code:
  <map name=&quot;NavBar&quot;>
  <area shape=&quot;rect&quot; coords=&quot;4,6,63,64&quot; href=&quot;../index.asp&quot; target=&quot;_parent&quot;>
  <area shape=&quot;rect&quot; coords=&quot;64,3,175,24&quot; href=&quot;index.asp&quot; target=&quot;_parent&quot;>
  <area shape=&quot;rect&quot; coords=&quot;178,3,321,24&quot; href=&quot;cg_main.asp?gformat=education&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;325,3,580,24&quot; href=&quot;cg_main.asp?gformat=agencies&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;65,27,139,47&quot; href=&quot;cg_main.asp?gFormat=allunc&InstName=UNC&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;142,27,276,47&quot; href=&quot;cg_main.asp?gFormat=alldcc&InstName=DCC&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;279,27,461,47&quot; href=&quot;cg_main.asp?gFormat=agencies&gAgencyVal=ESC&Single=yes&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;465,27,579,47&quot; href=&quot;cg_main.asp?gFormat=agencies&gAgencyVal=DOL&Single=yes&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;65,50,274,69&quot; href=&quot;cg_main.asp?gFormat=agencies&gAgencyVal=DVR&Single=yes&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;278,50,496,69&quot; href=&quot;cg_main.asp?gFormat=agencies&gAgencyVal=DET&Single=yes&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;500,50,663,70&quot; href=&quot;cg_main.asp?gFormat=agencies&gAgencyVal=JTPA&Single=yes&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;667,15,747,34&quot; href=&quot;../whatsnew.asp?type=cg&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;667,38,746,58&quot; href=&quot;../help.htm&quot; target=&quot;main&quot;>
  <area shape=&quot;rect&quot; coords=&quot;583,4,664,48&quot; href=&quot;cg_main.asp?gFormat=agencies&gAgencyVal=WIA&Single=yes&quot; target=&quot;main&quot;>
  </map> 

  <img height=&quot;74&quot; alt src=&quot;images/cg_navbar.gif&quot; width=&quot;753&quot; useMap=&quot;NavBar&quot; border=&quot;0&quot;>

Karl
kb244@kb244.com
Experienced in : C++(both VC++ and Borland),VB1(dos) thru VB6, Delphi 3 pro, HTML, Visual InterDev 6(ASP(WebProgramming/Vbscript)

 
Add a &quot;#&quot; in front of 'NavBar' in the USEMAP attribute within your image tag. Like so:

<img height=&quot;74&quot; alt src=&quot;images/cg_navbar.gif&quot; width=&quot;753&quot; useMap=&quot;#NavBar&quot; border=&quot;0&quot;>

Hope this helps. Good Luck.

Cullen Cox
cullenc3@aol.com
Graphic Artist/Web Designer.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top