refers to a message that pop-ups in a separate window for user interaction.
0
votes
0answers
161 views
Jquery Popup button will not close
I have three popups on the same page. I have added a close button using
$("#planFacetResults .ui-bar-d").buttonMarkup({ icon: "delete" }).buttonMarkup({ theme: "d" });
With this code for the close ...
0
votes
0answers
55 views
iPhone/iPad, What is the best way to design a UIWebView for a website with Three pop-ups connected with each other
Problem:
I'm implementing a website which when opened in browsers produces three pop-ups. These pop-up windows are connected with each other. Touch event on one of the pop-ups changes the content ...
0
votes
0answers
138 views
How to avoid having to reload the page to print webpage with Javascript
I'm using a function to print the contents of a part in a webpage. It works fine except for the fact that on all the browsers I've tested it, it only displays the popup window with the content to ...
0
votes
0answers
47 views
Vbscript “Catching” a returned webform
While setting up users for the company I work for, I require them to have an account created on a website.
I can get in and create the users just fine, the problem is that when I submit the form, a ...
0
votes
1answer
159 views
iPad how to make action bar and popups
I want to do something similar to image right here:
I want to have action bar and popups like this. Are there already existing components or is this accomplished using plain views? I tried to ...
1
vote
1answer
496 views
How to cope with “Unresponsive Script” popups controling Firefox with watir-webdriver
This popup kills many of my tests. Even simple DOM interactions like .exists? timeout. Is there any way of detecting that it appeared and dismissing it?
Warning: Unresponsive script.
A script on ...
0
votes
2answers
409 views
popup jquery help
I have a working pop up with the codes below and i wanted to transform this to this "simple" tutorial i found here stunning smooth pop up using jquery but I've been struggling on this
here's the html ...
0
votes
1answer
194 views
Pop-up and font colour based problems in a form which is designed in Share Point
I am designing a system in Share Point via Share Point Designer. We have a form in my Share Point site. Users have to fill some fields in the form and send it to the approval committee. We cannot ...
0
votes
2answers
386 views
Stop pop-ups with URL
I've been asked a question, and don't know if there is an answer.
"do you know if there is some code you can put into URLs to block pop-ups?"
This isn't using pop-up blocking software or toolbars ...
0
votes
1answer
698 views
Remove / Clear Error message tool tips on Cancel button click
I have referred this for creating error message tool tips, to be displayed continuously unless the error is resolved by the user. :: http://aralbalkan.com/1125 .....................
But, this is ...
0
votes
4answers
5k views
How can I open a small window when the user hovers over some text?
I am preparing a web page with more data that can possibly be shown without making the page really cumbersome. I am considering different way to do this. One way would be to have the extra data ...
3
votes
1answer
1k views
How to pop up a minimized wxPython window
I have a utility where I want it to pop up to the front of the screen from time to time to request user input.
(I know it is very annoying general behavior but I have good reasons in this case.)
I ...
1
vote
1answer
370 views
from pop window active the parent window
Using javascript I open the pop window and parent window is inactive at this time ,
i wanted to active parentwindow through popwindow.(this is a web project on java)
Please help me,
thanks
1
vote
4answers
682 views
Recommended technology choice for desktop application
I am creating an application that is essentially a financial alerts site. I am a basic level Java programmer, and I have created some of the logic for alerts in Java.
I want to be able to have ...
10
votes
8answers
5k views
Proper way to display pop-ups using WPF M-V-VM pattern
I had a question about the VM responsibilities when it comes to pop-ups.
When an app is popping a message box or some kind of dialog (with MVVM), the two options that we have are:
putting UI ...
0
votes
3answers
964 views
Using XMLHttpRequest to display a popup
I am writing an ASP.NET 3.5 web app that displays a list of items. I want to be able to display a non-modal popup with details when the user selects an item. I want to be able to display several ...
2
votes
5answers
16k views
Alternatives to illegal <br> or <p> within <li> tags> on a hover?
does anyone have a suggestion for creating paragraph-type line spaces within a <li> tag that includes a hovered pop-up pseudo-class?
I have a <span> that pops up on a:hover and I want the ...
3
votes
3answers
8k views
Bypass IE “The webpage you are viewing…” pop up
Is there a way to bypass the following IE popup box:
The webapge you are viewing is trying
to close the window. Do you want to
close this window? Yes|No
This is occurring when I add ...
1
vote
1answer
1k views
Customizing pop up background color with IE7 open popups in new tab setting
I have a pop up on my page that I want to have a white background if it is opened in a new tab according to the user's settings in IE7 to open pop ups in new tabs.
Is it possible to customize this, ...
3
votes
2answers
1k views
popups from embedded .swf cross-browser
Situation: you've got a .swf embedded in an html page, and when you click on something in the .swf, it needs to popup a chromeless window. Normally this would be fairly easy - but consider Safari, ...
0
votes
4answers
2k views
Strange behaviour opening pop-up window in Internet Explorer
I have the following JavaScript code to pop up a window in Internet Explorer. The code is executed from a page within a Microsoft CRM modal dialog box. (RequestID is a string that is always the same ...
0
votes
2answers
1k views
Suppressing Popups in Windows
Is there an easy way to tell Windows not to display popups on a headless server machine?
Currently occasional application popups are causing my app to freeze because no one is available to press ...
1
vote
2answers
3k views
ASP.NET: Popup browser windows and session cookies
SUMMARY: When browsing an ASP.NET website using Windows Explorer, popup windows do not "borrow" the session cookie from the parent window.
DETAILS:
I'm working on an ASP.NET website (.NET 2.0). I ...
4
votes
4answers
2k views
How do I pop up an image in a separate div on the mouseover of a div using only CSS?
I have a small gallery of thumbnails. When I place my mouse pointer over a thumbnail image I'd like to have a full size image pop up in a div in the top right of the screen. I've seen this done using ...
19
votes
5answers
54k views
Handling browser pop-up windows with Selenium
We are running Selenium regression tests against our existing code base, and certain screens in our web app use pop-ups for intermediate steps.
Currently we use the commands in the test:
// force ...
1
vote
1answer
1k views
How can I reimplement external pop-up jQuery code in Prototype?
I have this code in jQuery, that I want to reimplement with the prototype library.
// make external links open in popups
// this will apply a window.open() behaviour to all anchor links
// the not() ...