I know alt= and title=, But I've seen other hover text which is more advanced, and quicker to show up. How can I do that? Ill try to find an example sometime, cant find one right now. Heres an example: http://wow.allakhazam.com/dyn/items/i24.html If you put your mouse over the Names, it has the hover text.
Doesnt let me put into php code. Ie I want to do: echo 'onmouseover="<a doTooltip(event,'.$description.')" src="site.com">Text</a>'; But it seems like it doesnt like it. It needs to have the hover text for all items in my database.
If you're using quotes, put a \ before it. So if it's echo 'onmouseover="<a doTooltip(event,'.$description.')" src="site.com">Text</a>'; Change it to: echo 'onmouseover="<a doTooltip(event,\'.$description.\')" src="site.com">Text</a>';