Note that there are some explanatory texts on larger screens.

plurals
  1. POJquery for dialog in MVC4
    primarykey
    data
    text
    <p>I used jquery ui from this link <a href="http://jqueryui.com/demos/dialog/#animated" rel="nofollow">http://jqueryui.com/demos/dialog/#animated</a> for dialog which is not working in MVC4 application</p> <p>This is my View @{ ViewBag.Title = "Dialog";</p> <pre><code>} &lt;link href="../../Content/themes/base/jquery.ui.all.css" rel="stylesheet" type="text/css" /&gt; &lt;link href="../../Content/themes/base/jquery.ui.dialog.css" rel="stylesheet" type="text/css" /&gt; &lt;script src="../../Scripts/jquery-ui-1.8.11.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="../../Scripts/jquery-ui-1.8.11.min.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; // increase the default animation speed to exaggerate the effect $.fx.speeds._default = 1000; $(function () { $("#dialog").dialog({ autoOpen: false, show: "blind", hide: "explode" }); $("#opener").click(function () { $("#dialog").dialog("open"); return false; }); }); &lt;/script&gt; &lt;div class="demo"&gt; &lt;div id="dialog" title="Basic dialog"&gt; &lt;p&gt; This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.&lt;/p&gt; &lt;/div&gt; &lt;button id="opener"&gt;Open Dialog&lt;/button&gt; &lt;/div&gt; &lt;!-- End demo --&gt; &lt;div class="demo-description"&gt; &lt;p&gt; Dialogs may be animated by specifying an effect for the show and/or hide properties. You must include the individual effects file for any effects you would like to use.&lt;/p&gt; &lt;/div&gt; &lt;!-- End demo-description --&gt; &lt;div class="demo-description"&gt; &lt;p&gt; A modal dialog prevents the user from interacting with the rest of the page until it is closed.&lt;/p&gt; &lt;/div&gt; &lt;!-- End demo-description --&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload