I have an issue where the JavaScript source file is loading in popup for IE6, Chrome, Firefox, Safari and Opera. But the same source file is not loading up in IE8.
As a result of this the HTML is not being replaced in the Popup and I am getting an error in IE8 popup saying tinyMCE is not defined
I have referred to http://stackoverflow....
I have an intranet on a remote Web server. This will be integrated with Active Directory on our local server. The web server is running Apache / Linux and the AD server is running Windows 2003. This is all done with VPN.
Login to the intranet is conducted in two ways:
1. Users who are logged in to AD to be logged in automatically with S...
So this is using javascript and HTML.
For example:
<select name='test' >
<option value='1'>
<option value='2'>
<option value='3'>
</select>
If someone chooses option value 2 (from the dropdown) I want a popup to appear. However if they choose option value 1 or option value 3 (from the dropd...
I am opening a popop windows with window.open. I want the scrollbars to show up if needed. However in safari, the scrollbars are not showing up unless I set, scrollbars=1,
However that makes even horizontal scrollbars show up. Is there a way to specify,
"Show only horizontal scrollbars, if needed" to popop window.
(Possibly via some c...
Hi,
I'm currently building an air app with FB 4.
I have a custom control that contains a VideoDisplay control, and which loaded using the PopupManager.
Using the profiler, i've noticed that every time the my popup is loaded the memory for it gets allocated, but when it's closed the memory is never recovered.
There's nothing else hol...
Hi all, I have written code like this to throw a pop up when my website is closed. But this throws the pop up even if i refresh my page. Please help me to throw popup only when i close the browser of that website. (disable popup on refreshing page)
<body onunload="javascript: exitpop()">
<script type="text/javascript">
function exitpop...
I have two pages one.html and two.html
i am opening a new window using following code
//here popup is a global variable
popup=window.open('two.html','two');
for the first time a popup window open successfully and get the focus but
if i try to open it again without closing already opened popup then two.html is not getting focus for...
What does a pop up that says assert failed mean?
...
Hi folks,
I have a client who wants to open variously sized images in a centered popup. I tried to get them to use FancyBox but they don't want interstitial presentation, so...
I initially was opening a generic popup which resized and centered onload based on image size but they don't like the shift so I added a PHP script to echo the...
Hi,
I have a "basic" license agreement screen for now, a Screen with a title set and vertical field containing a textfield, separatorfield and then 2 buttons (accept or decline).
The license is pretty long, it's annoying going all the way down (except with the storm it's pretty easy) and I want a kind of popup screen showing the licens...
I have a list of people wrapped in a-tags with onclick for opening a popup window.
That popup window contains a previous and next button that invoker a function in the parent window to get the previous/next a-tag and execute the onclick for it.
nextAnchor.onclick();
This should update the popup window with the new persons info, bu...
Hai am using c#, i created a wpf popup control in my wpf form, when i click the popup is opened, now i want to make that popup as movable one, how u can do this,....
...
Hiho,
currently I have a working popup menu which appears when I click on a treeview item.
But I want to show different popups for different tree view entries. I don't get a idea how to do so...
Here is my code for creating the menu:
MenuManager menuMgr = new MenuManager("#PopupMenu");
menuMgr.setRemoveAllWhenShown(true);
menuMgr....
I'm creating a popup window in a listactivity in the event onListItemClick.
LayoutInflater inflater = (LayoutInflater)
this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View pop = inflater.inflate(R.layout.popupcontact, null, false);
ImageView atnot = (ImageView)pop.findViewById(R.id.aNot);
height = pop.getMeasuredHeight();
width ...
Hello all,
I have a page located at x.com. On this page is a button that, when clicked, will launch a new window (using javascript's window.open() method) to a page that is located at z.com. The popup does a few things, then redirects the original window (the opener, x.com) to a different page based on some parameters defined in the p...
I am building a web app, for myself, to control some servers on my home network, and discovered what I think is very odd behavior in Firefox.
If you open a pop-up, via javascript, in Firefox, is it then impossible to open a new tab, via javascript in that pop-up? If not impossible, how do you do it?
Given a clean, default Firefox 3.6....
window.popup = window.open($(this).attr('href'), 'Ad', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0');
$(window.popup).onload = function()
{
alert("Popup has loaded a page");
};
This doesn't work in any browser I've tried it with (IE, Firefox, Chrome). How can I detect when a page is load...
I have a menu in asp with many menuitems.
I want one of the menu items to call a popup box.
I am using C# with code in a seperate file.
I would normally say something like:
RegisterStartupScript("Format Error", "<script>alert('Max Load Must be an Integer')</script>");
I want this to be called when I click the Menu Item.
The idea...
Hi all,
I have a question.
In an html page, I have javascript code that allows me to open and close a popup window by clicking on a link displayed in the link, so the text displayed in the link changes to the state of the popup window (open-closed).
With a variable true / false I manage the opening and closing of the popup window to
cl...
I have turned on PopUp blocker in FF and Chrome.
I have a piece of code to check PopUp is working as:
function checkPopUp()
{
var myTest = window.open("about:blank","","directories=no,height=1,width=1,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,top=0,location=no");
var popUpsBlocked = '';
if (!myTest) {
popUp...