popup

Opening another Popupwindow from JqModal

Dear All, i am making Popup window using jqModal , I have One MainPopup window , after Clicking OK I have to close that window and Open another Popup window.How to achiev this Here My Problem is Click event not working While I am pressing Button {#b}; More than this onclick of ButtonI have to open another popupwindow .ANy Hel...

Simple Modal in JQuery

Dear all, I am using SimpleModal in JQuery, and I have One Confirm Dialog ,If it is Yes , I have To Call my.php into This Dialog,However I done the code ,I still Searching Ideas, any help? $(document).ready(function () { $('#confirmDialog input.confirm, #confirmDialog a.confirm').click(function (e) { e.preventDefault(); ...

Frame position in JavaScript

I am having a frame-based webpage with 3 frames. A topliner, a navigation on the left side and a content frame on the bottom right side. Now, I want to show up a popup-menu when the user right-clicks on the content-frame. Because a div-container can not go out of the frame, my idea was, placing the whole frame-page into a new iframe. In...

Is "tip-of-the-day" good?

Many programs (often large ones, like MS Office, The GIMP, Maxthon) have a feature called "tip-of-the-day". It explains a small part of the program, like this one in Maxthon: "You can hide/show the main menu bar by pressing Ctrl+F11" You can usually browse through them by clicking next. And other options provided are "Previous", "Close...

Stop Firefox extension popupset auto-hiding

I am building a Firefox Extension. I have a popupset that is shown when a toolbar button is pressed and also have working code to close the popupset manually. The problem I have is that the popupset disappears whenever I click elsewhere. I would like to disable this automatic closure behaviour. I'm sure I've seen a popupset or panel att...

WPF: Best way to raise a popup window that is modal to the page?

I am building a WPF app using navigation style pages and not windows. I want to show a window inside a page, this window must be modal to the page, but allow the user to go to other page, and go back to the same page with the modal window in the same state. I have tried with the WPF popup control but the problem is that the control hid...

Timed popup in Android

I am creating a matching game for Android, and when the user gets a match, a dialog box should pop up saying "Match!" I cannot figure out how to do this though. If I use Thread.currentthread().sleep, the dialog never appears. android.app.AlertDialog a = new android.app.AlertDialog.Builder(match.this).setTitle("Match!").show(); Thread.c...

How do you get window.open to work in internet explorer 7?

I've been trying for the past 3 hours to get my svg web site to open popups, and all I ever get is "Permission Denied" errors in internet explorer. I've tried everything I could find on google, and nothing works. I've even gone to the point of just calling window.open() blank with no parameters, and still get a permission denied error. W...

Best way to show a edit text over screen?

If I have a application that has a primary layout of Portrait (It is fixed as portrait), but there is one place to type in text. I would like to launch like a popup window but in Landscape w/ the background image fogged out? I hope that makes sense. I know there is a Popup Widget, but any ideas to rotate the edittext box would be great. ...

Third party content in custom pop-up window

Taking http://youtube.com, http://justin.tv, http://ustream.tv as examples, is it possible to do the following: Open the third party page in a pop up window Analyze the height and width of the element Resize AND offset the window contents to the size of the element This would be specifically useful when embed is disabled by a parti...

How can I reference a popup window from two different pages?

I need to allow a user to click a link in "page-1.htm" and open a popup window. Then, when the user browses to "page-2.htm" in the main browser window I need to be able to reference the popup window. JavaScript in "page-1.htm" var playerWin = window.open("player.htm", "playerWin", "width=300,height=130"); playerWin.play("song.mp3"); ...

How to display a popup from an external file in YUI ?

I am starting using YUI's Container control in my application to display messagebox popups and other dialogs. I am not clear what the recommended/cleanest way to create a popup sourced from an external HTML file would be. I'm talking about a popup showing 'further information' about a product - which would contain text and images. The ...

Jquery confirmation box

I'm looking to create a generic confirmation box that can be used by multiple widgets easily, but I'm running into problems with scope and was hoping for a clearer way of doing what I'm trying to do. Currently I have the following - (function() { var global = this; global.confirmationBox = function() { config = { ...

IE & Drop Down Menus triggering the Pop-Up Blocker

I have no idea why this is happening. I have some very straightforward code, replicated below, which works fine in all browsers except for IE 7 & 8. In those browsers, trying to expand the list of options in the select triggers the built-in Pop-up blocker bar. What gives? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "ht...

How to open real popup window in Flex

I need to open popup window in my flex / air application that will be displayed like normal application window. All I could manage is to open a window which is displayed inside my main flex window. Is it something like that possible, and is there some workarounds if not? ...

How to return value from html popup

Hi, I need a terse, clean way to implement this in asp.net mvc (+/- jquery or js)? User clicks an element in webform A; Webform B pops up; User interracts with webform B; On closing webform B, probably by a submit button, the source element in webform a is updated with a value from webform B Thanks. ...

What is the best ajax control to display floating windows?

Aloha, I'm looking for a floating div type of control, to display another (user)control over an aspx page, using ASP.NET and Ajax. As far as I can see the Ajax Control Toolkit doesn't have a nice overlay control. Can anyone point me at a solution? ...

JavaScript window.open only if the window does not already exist

I have an application that opens a new window on clicking a link. This spawns a page that holds a Java applet. The problem I am having is that clicking the same link reloads the page, which resets the Java application. Is there any way to trap this? Two solutions that would be acceptable are: Allow multiple windows to be opened from th...

How can I check for an open URL in another window?

This is a follow up to my last question Open a window if the window does not already exist Essentially, I am now keeping a list of all the window references that have been opened by a page, and only allowing them to be opened if they are not already open. Then a potential problem struck me - it is of course possible for a user to shut do...

Pop-out music player from a frame

I am currently coding a website for a band and i have a music player located within a frame in the website. I would like to make the music player pop out from within the page when i click on a button. I was wondering if there was some sort of javascript/jquery code i can employ for this function. If not, what other work-around can i us...