Hello Guys!

What Kind of Tag is this?

Recommended Answers

All 12 Replies

Looks like a list with a secondary list and triangle images replacing the default disks.

I'm looking for the tag can you do that?

It's a list:

<ul><li>first item</li>
<li>Seconnd item</li>
<li>Third item 
<ul><li>Three -a</li>
<li>three -b</li>
</ul></li></ul>

the css for replacing the default marker with an image

list-style-image: url(image.gif);

that triangle is clickable if you click that it will show the list...then if you click again the list will hide...

ok i find the code here it is...

<script type="text/javascript">
function switchit(list){
var listElementStyle=document.getElementById(list).style;
if (listElementStyle.display=="none"){
listElementStyle.display="block";
}
else {
listElementStyle.display="none";
}
}
</script>
<ul>
    <li id="tutorioli">
       <ul>
          <li><a href="http://www.tutorio.com/">View All</a></li>
          <li><a href="http://www.tutorio.com/webmaster/1-Announcements">Announcements.</a></li>
          <li><a href="http://www.tutorio.com/webmaster/5-Featured">Featured.</a> </li>
          <li><a href="http://www.tutorio.com/webmaster/6-Linkage">Linkage.</a>  </li>
       </ul>
    </li>
    <li id="tutorialsli">
        <ul >
          <li><a href="http://www.tutorio.com/webmaster-tutorials/">View All</a></li>
          <li><a href="http://www.tutorio.com/free/11-Clientside-tutorials">Clientside.</a></li>
          <li><a href="http://www.tutorio.com/free/7-Flash-tutorials">Flash.</a></li>
          <li><a href="http://www.tutorio.com/free/10-Marketing-SEO-tutorials">Marketing-SEO.</a></li>
          <li><a href="http://www.tutorio.com/free/8-Photoshop-tutorials">Photoshop.</a></li>
          <li><a href="http://www.tutorio.com/free/9-Serverside-tutorials">Serverside.</a>    </li>
         </ul>
      </li>
    </ul>

haha this is not working under the loop in php i dont know why haha....

Your javascript is calling for an item with an id of 'list' I don't see it in your ul code.

by css3 you can do this menu

can you post your code here or any link?

Thanks in advance

what is html tag's and tree protacol

Hello Guys!

What Kind of Tag is this?

HEy dude...! its not a html tag...! its an ASPX DATA control ( XML driven data)

HEy dude...! its not a html tag...! its an ASPX DATA control ( XML driven data)

Given that the original reference was to an image showing text and graphics without any code or page reference or clue as to the properties of the original, one could state it's simply an image. OR it's a list with styled markers OR it's a dynamically reactive list using javascript and styled markers OR...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.