c# - show popup when we click marquee in asp.net -
i using marquee displaying news , announcement. can tell me how can show popup. when click marquee in asp.net.
you can using jquery ui. example:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jquery ui dialog - default functionality</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.9.1.js"></script> <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <link rel="stylesheet" href="/resources/demos/style.css"> <script> $(function() { $( "#dialog" ).dialog(); }); </script> </head> <body> <div id="dialog" title="basic dialog"> <p>this default dialog useful displaying information. dialog window can moved, resized , closed 'x' icon.</p> </div> </body> </html>
Comments
Post a Comment