popup

open a pop up window without using javascript

how to open a pop up window in code behind(C#) without using javascript. ...

Javascript Pop Up Page Makes Text Invisible In Internet Explorer

I'm working on a project at the moment where I've come up against a rather frustrating problem in Internet Explorer. I have a series of pop ups on a particular page that are opened with JavaScript when help links are clicked. The JavaScript for them is: function openHelpPopUp(url) { newwindow=window.open(url,'name','width=620,height...

Recommended lightweight balloon javascript library

Looking for small and light popup balloon JS library. (not part of other lib such as jquery) Must be cross browser. I found several. Any recommended one? ...

Popups with complex functionality using jQuery

I am using jQuery to simulate a popup, where the user will select a series of filters, which I hope to use to rebind a ListView in the original window. The "popup" is opened via an ajax request and the content is actually a diferent aspx file (the rendered output is injected into a div that acts as the popup). I have another ListView i...

Popup browser back to parent browser after a certain page is reached

I have a popup (which I used by necessity) that is opened on a link click. I have the user going through a series of pages picking attributes to then be sent to a shopping cart. My problem: After the user reaches the end of the selection process i want to kill the open popup and send the request back to the original browser (parent) so...

Why does a WPF Popup close when its background area is clicked?

I have a WPF Popup control that contains some editing controls (list boxes, text boxes, check boxes) laid out with quite a bit of whitespace. Popup.StaysOpen is set to False, which is required. If the user clicks elsewhere in the application, the editing operation should be considered aborted and the popup should close. Unfortunately ...

open popup with asp.net menu control

Hi guys i have a terrible problem İ have to open popup window(javascript) with asp.net menu control but i cant.Menu items dont contains "attribute" so i cant assign javascript codes. How can i solve? thx your suggestions ...

web2.0 popup?

Hiya, A site I need requires a check on the user when they click links which will take them to external websites (don't ask why, it just does..) The client wants some sort of popup box which will then have "do you really want to go?" along with 2 buttons for yes or no. Now I've done all this in the classic browser popup so far, as it...

jQuery Popup Menu On Page Refresh

I have developed a PopupMenu using a jQuery plugin. When the HTML button is clicked the PopupMenu should appear. Is it possible to do this instead when the page refreshes? How would I do this in jQuery? $(document).ready(function() { $('area').bind("click",function(e){ //popupcode }); }); ...

Detect blocked popup in Chrome

I am aware of javascript techniques to detect whether a popup is blocked in other browsers (as described in the answer to this question). Here's the basic test: var newWin = window.open(url); if(!newWin || newWin.closed || typeof newWin.closed=='undefined') { //POPUP BLOCKED } But this does not work in Chrome. The "POPUP BLOCKE...

Need to force open IE from safari browser while opening a new popup

Is it possible to open a pop up from a Java page which is on Safari browser to open a popup in IE browser. I think it is not possible. ...

wpf zIndex in TabControl

I am trying to get zIndexing working on a custom UserControl but it clips the bottom of the control when it pops up inside a TabControl as shown here. This is my XAML <StackPanel Panel.ZIndex="1"> <TabControl Name="TabCtrlMain" Panel.ZIndex="2"> <TabItem Name="TabItmOrdrLst" Visibility="Collapsed" Panel.ZIndex="3" > ...

swf movie over a html page (posh popup)

Hi everyone, I looking to hack something like this: An example >> Just click on "Start PicLens Lite Slideshow PicLens". Did you see how the swf/flash loads on top of the normal page? Im looking to do that :-D If there is some code out there the better otherwise any tips or hits are welcome. Thanks lots. ...

Javascript: Popup with movie from images in main window

Hi everyone, I'm a mostly-newbie Javascript'er and I'm trying it on a webpage which, upon pressing a button, pops up a window which shows a cyclic "movie" with the images from the main window. From what I've tried Googling around I can sense I'm pretty close, but something is eluding me. I know what follows results in two separate que...

what is the default pop up replacement now?

I know pop ups are not good and should be avoided if possible but is that really true that now, whenever i think of using a pop up, i should always be considering other options? Are there any exceptions? And the last question is: what is the default replacement for pop ups? ...

HTML divs popup to select columns

Hi, I have a web application(ASP.NET2.0 C#) and in it, I have a gridview that gets its data from a datasource. I wanted to add the following feature: the user can click a button "select columns", and a box pops up with a list of all the columns(a checkboxlist in a div, possibly) and that way, the user can choose the columns they want to...

Combining form validation and closing the popup window?

How can I make sure that the window doesn't close before the form is valid and properly submited? Because now it closes the popup and nobady knows if the form was valid. Because even iff there are errors the form is immediately closed. $(document).ready(function(){ $(".requestPassword").hide(); $(".popupwindow").popupwindow(pro...

Bookmarklet In New Window

So I've got a bookmarklet which should open up a page in a new window. javascript:window.open('http://timetableapp.com/TimeTable/bookmarklet/index.html','TimeTable%20Timer','status=no,directories=no,location=no,resizable=no,menubar=no,width=400,height=210,toolbar=no'); The code works perfectly in Safari, Firefox, and Chrome; but as ex...

XUL Textbox inside Popup not working

Hi, I am working on creating a Firefox extension. I have added a textbox inside a popup. The popup opens on clicking on a toolbar button. The textbox is appearing but does not let me edit it. I have not given any read only attributes. Here is the code: <popupset id="myPopupSet"> <popup id="trial-popup" noautohide="true" positio...

PopUp window in IE 6 SSL

Hey all.. I have a weird issue. I am opening a popup window in IE6 with SSL enabled on the server. When the following executes it seems to lock the browser up. I know this is vague. This is the JScript that appears to be the problem. Gotta love your IE6! function PopoffWindow(url) { var features = "height=400,width=550,top=60,left...