How can I duplicate Pinterest website’s modal effect?

This is my assessment of how Pinterest achieves it’s unique modal look and how to duplicate it. First and foremost, URL Link handling is server-side analyzed to see if the link is originating from the Pinterest site itself. That said, the Browsers URL Address Bar and History are dynamically created and not actually performed by … Read more

Why is a modal/modeless dialog called modal/modeless?

With a modal dialog, you set your application in a particular mode (a different “state” if you will), whereby only actions pertaining to that “mode” are accepted, hence preventing UI actions outside of the dialog. At Andreas’ prompting I thought I may have to dig dusty Windows API books, as often, the etymology/origin of a … Read more

How to force a Kendo UI modal window to center in a page? and how to disable all the actions?

Have you tried hiding it, then centering and opening it? var accessWindow = $(“#accessDiv”).kendoWindow({ actions: {}, /*from Vlad’s answer*/ draggable: true, height: “300px”, modal: true, resizable: false, title: “Access”, width: “500px”, visible: false /*don’t show it yet*/ }).data(“kendoWindow”).center().open(); from: http://www.kendoui.com/forums/ui/window/kendowindow-center-doesn-t-work-when-inside-an-iframe.aspx

Why is window.showModalDialog deprecated? What to use instead?

Why is window.showModalDialog deprecated? From http://tjvantoll.com/2012/05/02/showmodaldialog-what-it-is-and-why-you-should-never-use-it/, In general the idea of putting a native dialog implementation into the browser was a really good idea, but window.showModalDialog was a bad implementation that is riddled with issues and poor browser support. (…) Note that (…) [a modal dialog using showModalDialog] is a full HTML document, not a … Read more