Hi, Its me Ayesha
I have a Question about Help Indicator.
Please Tell me How I can Develop the Help indicator like in this web site.
http://tickettrunk.com/event/add#

I shall be very thankful to you for this ....

Ayesha
Developer

An extremely simple example that relies on the "title" for an anchor tag is shown below. Perhaps this can take you in the right direction.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<TITLE>Help Example</TITLE>
<style type="text/css">
	img
	{  
		border-style: none;
	}
</style>
<body>
		<div>
			<a href="#" title="A description for this first item."><img src="/images/QuestionMark.gif" style="vertical-align: middle;"></a>
			<span style="vertical-align: middle; padding-left:10px;">Text 1.</span>
		</div>
		<div>
			<a href="#" title="Another description for this second item."><img src="/images/QuestionMark.gif" style="vertical-align: middle;"></a>
			<span style="vertical-align: middle; padding-left:10px;">Text 2.</span>
		</div>
</BODY>
</HTML>

you use Java script to style your tool tips. there is some great open source projects available.

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.