• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Hyper Links are not coming in div tag

 
Ranch Hand
Posts: 2234
Eclipse IDE Firefox Browser Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,

With this below content the div appears good , displaying hyper link contents Initaiily .

<ul>
<div id="navmenu1"><li><a href="#" class="home">Home</a></li></div>
<div id="navmenu2"><li><a href="#" class="home">Office</a></li></div>
<div id="navmenu3"><li><a href="#" class="home">Places</a></li></div>
</ul>

But after making a Ajax Request and updating the div Contents , the hyperlinks are missing It Divs are just updated with no styling)

<ul>
<div id="navmenu1"><li><a href="#" class="home">Home</a></li></div>
<div id="navmenu2"><li><a href="#" class="home">Office</a></li></div>
<div id="navmenu3"><li><a href="#" class="home">Places</a></li></div>
</ul>





Please tell me how can i resolve this ??

Thanks .
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When you do


Is it what you expect?

When you do



Is it what you expect?

Eric
 
reply
    Bookmark Topic Watch Topic
  • New Topic