Hi,

Mouseover the circle area i will display some text.the following code is correct or not.does not work this code.where can put mouseover function.
plz help me,urgent,
I asked many times but nobody tell me.

<map name="Map" id="Map">
<area shape="circle" coords="229,40,35" href="<?php echo url_for("@make_plans") ?>"onMouseOver="('HEY JOHN YOU HAVE NEW MESSAGE')"; alt="Make Plans" />

Member Avatar for stbuchok

Issues with your code:

1. need a space between " and onMouseOver
2. at the end of onMouseOver="..." you have a semicolon (;), remove that
3. ('HEY JOHN...') does absolutely nothing
4. Your English is terrible and hard to understand, please reword what you are trying to say

at the very least you can have onmouseover="alert('Message goes here.');", this is not advised and should only be used for testing.

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.