popup

hi how to show a pop up box if there is some result for the mysql query?

Hi I have a message box in my project if one have to check some message they have to enter the message link to check message instead ,I am thinking of showing a message in a popup box if the query where i am fetching the messages is not empty ,,(i,e) if there is any unread message in users account must,trigger a popupbox with message...

How can i lock the main document's scrollbar and force a certain div's scrollbar to be used instead?

i would like to be able to lock the scrollbar and have a different one used instead. this is because i have an overlay div .overlay { opacity: .8; filter: alpha(opacity=80); position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 600; display: none; background: #000; } and a po...

cannot print popup displaying pdf file

I have a php file with the following code: <?php ?> <form action="" id="f1" name="f1"> <input type="button" name="preview" value="Open PDF" onclick="showPDF()" /> </form> <script type="text/javascript" src="jquery-1.4.2.min.js"></script> <script type="text/javascript"> function showPDF(){ var newwin=window.open("pdf.pdf...

What could be the best solution to avoid the conflict of http and https popups in IE?

What could be the best solution to avoid the conflict of http and https popups in IE? I have many Secured connection pages where i face this popup in IE, I want to handle it how to do that? ...

How to get in Apache password protected directories without showing popup login

I read here how to get into an Apache password protected directroy via dircet link with the simple: http://username:[email protected]/protected_dir/ that works in FF/Chrome/Safari, and obviously not in IE7! :) Do you know how could i get into a psw protected directory creating maybe a login form and using GET/POST to get in? Do...

jQuery popup help

I'm using this script as a popup on my website for a login. But what im having trouble with is that it makes me put the HTML code of the popup in my index or page whichever will display the popup. Is there a way to make it so that i can call the popup code externally like whatever is in the popup? This is the popup code im using! htt...

Making Facebox wait until FLV player has loaded.

Not entirely sure how to do this, but I noticed that Facebox works perfectly, but when I use it to load a movie, the FLV Player, JWplayer isn't fully loaded yet, and errors out. So I want to load JWplayer ( the FLV player ), before Facebox. Facebox gives this as their embed code. And they explain that you can pass an argument in it as w...

Opening ChatApplication in a Pop Up Window using JavaScript

Hello everyone, I'm working on this project website wherein i will be adding a chat application where users can communicate with each other. I already have developed a chat room webpage which is now functioning well. However, what I want is to create a "Chat Room" link on my website which will just pop out the chat room as a pop-up wind...

open a pop up when querystring matches

Hi Is there anyway that I can pop up a window with just matching a query string from the url. Sample code is like follows string popup = context.Request.QueryString["raisepopup"]; if (popup == "raise") { //Here when the query string matches to raise the pop up shoul be displayed with some information which is already grab in this c...

Link problem with Drupal 6.16

Hello everyone, i am currently working on a website and I need to make a chat application for it (as seen on some other questions i posted, haha) Anyway, the gist is that I now have my website (on localhost for the time being), and my chat application. Now i need to make a button which, on click, will open the chat webpage in a pop-up w...

Can I make web page look as pop up??

Hi I have created webpage and I am calling it from Jquery function. Technically I used {info} as image button and I am replacing with it with .aspx so that it is redirecting to that page. .replace("${info}","/_layouts/webpage.aspx"); The web page is opening in new browser window. Is there any way that I could make it as pop up so I ca...

Only one popup per visits... Help Me

Hi all, I have a site using javascript popup effect like this: <script type="text/javascript"> var GB_ROOT_DIR = "greybox/"; </script> <script src="greybox/AJS.js" type="text/javascript"></script> <script src="greybox/AJS_fx.js" type="text/javascript"></script> <script src="greybox/gb_scripts.js" type="text/javascript"></script> <l...

JavaScript "Toaster Popup" class works awesome in FireFox fails in IE...

SOLVED: SEE "CORRECTED SOLUTION" Area (below) --------------------------------- ORIGINAL TEXT --------------------------- I've created a JavaScript toaster popup to show info about an individual row. It works great in FireFox...but it goes down in flames in IE. ...suggestions and help appreciated. WHAT I THINK IS FAILING: I think I ...

jQuery plugin for pop up message after form submission

Does anyone know any jquery plugin to show successful pop up message after form submission? ...

javascript popup window remember last size and position.

I am opening pop-up window through JavaScript with resize option for end user. End user may resize pop-up window or change its default position by dragging it. I have requirement of remembering last position and size of pop-up window when user closes the window. At present I can keep last size of the pop-up window in onbeforeunload eve...

ajax control toolkit popup style asp.net

hi all, I am converting across an old popup system from an older app into a newer one and want to take advantage of the ajax control toolkit to do all of the popups. Unfortunately the business will require me to make the popups look like the old version (essentially just another page opened in a smaller window and showing the title ba...

WPF creating window-popup

By window-popup I mean a popup which sort of stays only with a window/application. As far as I know I will have to explicitly handle showing/hiding of popup based on Application.Current.Activated/Deactivated Application.Current.MainWindow.Activated/Deactivated ParentWindow.Activated/Deactivated I want to make sure Alt-Tab hides/shows t...

GXT - Auto height in Info popup

I am using class com.extjs.gxt.ui.client.widget.Info for showing popup messages. I need to show messages of different height, so popup element should change its height automatically. For first look, it is possible - Info has method setAutoHeight, inherited from BoxComponent, but I can't get instance of Info - it has only static methods f...

ASP.NET MVC 2 Popup dialog - performance and strange behaviour

I use this in my Index.aspx: <%= Html.StandardOverlayCreateButton() %> <div class="apple_overlay" id="overlay"> <div class="contentWrap"> </div> </div> Which is translating into this: <a href="Employee/Create" rel="#overlay"><button type="button">Create</button></a> <div class="apple_overlay" id="overlay"> <div class="con...

Have html appear after 5 Seconds

Hi, I have a bit of a little popup warning thing, and I'd like it to appear after 5 seconds as oppose to right away. All it is is direct html. Anyone know how to do it? Thanks edit: it's not actually a popup, it just comes up and shows the user a message about their account. And it's needed because it takes 5 seconds for part of it to...