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?
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?
something like this?
http://jqueryfordesigners.com/coda-popup-bubbles/
I'm not entirely sure what you need.
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