Hi All
I am working on one project. The requirement for business is like one popup should appear while one menu is moused over. Actually that menu item is "ADDRESS" , and client wants that once that pointer will come over "ADDRESS" ,one small popup will appear with address information and once the mouse pointer comes out of the "ADDRESS" , that popup should hide. I need javascript code for this.

Thanks in advance
Prasanna

That really is not that difficult. You can change the display of a element using:

document.getElementById('divId').style.display='none';
document.getElementById('divId2').style.display='inline';

And the 2nd line javascript should be triggered onmouseover, and the 1st line onmouseout. Make them into 2 little functions and voila you got yourself a popup.

~G

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.