vote up 0 vote down star

Hi there,

I'm using ASP.NET with C#

I need to display a popup panel (doesn't have to be a panel) when i hover over a UI element.

The user may click on buttons on the panel which will envoke Ajax calls

How can i go about this? Any code samples?

flag

2 Answers

vote up 0 vote down

something like this?

http://jqueryfordesigners.com/coda-popup-bubbles/

I'm not entirely sure what you need.

link|flag
vote up 0 vote down

You could use the JQuery UI Dialog and trigger the event on mouseover? Like the following:

$(document).ready(function() {
    $("UI ELEMENT").mouseover(function() {
        $("#panel").dialog({ autoOpen: true });
    });
});

for more info on the Dialog or Jquery UI see here: JQuery UI Dialog

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.