Disable Popup Killer Solution

Jul 24, 2003

Here's a little code snippet solution for Popup Killer software:

<script language="Javascript">
<!-- begin

function winopen(url){
var Win = window.open(url,"popup","menu=no")
if (Win == null)
window.parent.location.href='disablepopupkiller.htm'
}

// end-->
</script>


<a href="javascript:winopen('popuppage.htm');">click</a>

If the new window is "killed" because of the software, it loads a new page in the parent window ... or the last line of code can be replaced with a document.write('content here'); or show a hidden <div>. Any of these three can be used to tell the user to disable the software).

It works on my computer with ie6 ... let me know how it works on yours (if you have popup killer software installed).

View 4 Replies


ADVERTISEMENT

Solution For Clients Who Disable Script?

Aug 16, 2011

I am wondering what is the way around when the javascript is disabled?

For example, I am creating menu with bunch of drop down lists. The lists are dependant on the others. So, when I change the selection on the previous list, the elements on the next list should change. Of course this won't happen when the javascript is turned off.

View 5 Replies View Related

IFrame Redirect Killer Works 1/8th The Time (Safari)?

Apr 11, 2011

I am displaying an external website via an iFrame on my website. I am using the following code to detect if the iFrame tries to redirect the parent window:

Code:
<body>
<script type="text/javascript">

[code]....

View 3 Replies View Related

Popup Right Click Disable?

Mar 10, 2010

i am using the following code to open a popup window in this code can i disable right click on the popup

string url = "example";
Response.Write("<script language='javascript'>window.open('" + url + "', '_blank', 'height=500,width=350,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,titlebar=no,align=center' );</script>");

View 2 Replies View Related

Disable Address Bar Of JS Popup Window?

Mar 3, 2010

I am trying to open a popup window on clicking a link. It works fine, but all I need now is to disable the address/URL bar from the window for all browsers. I am using the below script...

<script type="text/javascript">
<!--
function popup(url)
{
var width = 600;
var height = 400;
var left = (screen.width - width)/2;
var top = (screen.height - height)/2;
[Code]....

View 2 Replies View Related

Disable First 3 Days Of Popup Calendar

Aug 9, 2010

I need to disable the first 3 days of a popup calendar so that users can only select a date which is 3 days in advance to the present date. I dont really know javascript. Calendar code can be found below.

[Code]...

View 2 Replies View Related

Disable Location Box In Popup In Firefox

Feb 6, 2010

I am triggering a Javascript based popup in which I want the URL location box hidden. I can get it to work fine in IE (I am using IE8) but the location URL box always shows in Firefox (I am using FF3.5). The code I currently have is below...

Code JavaScript:
var win1 = newWindow('{0}', null, 700, 'location=0,scrollbars=1,resizable=1', 300);

Is what I want to achieve not possible in FF based browsers?

View 4 Replies View Related

Can't Add And Remove An Element In FF / Solution For This?

Jan 7, 2011

I am having a problem removing an element after adding it.

This removeElement funcrtion works in IE but not in FF code...

View 7 Replies View Related

Crossbrowser Solution For RemoveNode()

May 26, 2005

As you might know, removeNode() is an IE DOM extension (works only for IE5, IE6 and Opera 8 but not in IE 5.2 for Mac, Moz, Safari.

Following one of my clients request I think I found a cross-browser solution to remove a node but keeping it's childs. The request was to find a function which will remove, onevent, the <a href=""> tags, but keeping the inner text.

This is what I have done. If you know a better or a shorter solution, please let me know:

function removeN(tag){
var tags = document.getElementsByTagName(tag);
for (var i=tags.length-1;i>=0;i--){
var root = tags[i].parentNode;
var kids = tags[i].childNodes;
var eSpan = document.createElement('span')
for(var j=0;j<kids.length;j++){
clon = kids[j].cloneNode(true);
eSpan.appendChild(clon)
}
root.replaceChild(eSpan,tags[i])
}
}

the variable tag might be 'a', 'strong', 'em'....

I guess that the code might be used as a crossbrowser solution for replaceNode() as well. In fact the code as it is replaces the node tag with a <span> tag, but it might replace it whith another desired tag....

View 5 Replies View Related

Is There A Sleep Functionality Or Similar Solution In Js

Jul 20, 2005

We have to develop a small engine which the client uses. It supposed
to work like this. Our engine resides in a frame (frameA) which will
be loaded only once and it provides set of functions. The client can
call these functions. We inturn should get the values from the server
or set the values in the server and return with the values. The way we
are planning to implement is that we will have have another frame
(frameB hidden) and submit it whenever the client (frameClient) calls
our function and wait till the page reloads and return with the value
( set in the reloaded page by the server). The problem we face now is
that we don't have any sleep functionality in javascript ( being event
driven) and if we have a loop waiting for the reply, it will consume
the cpu cycles and the the frameB wont load.

View 3 Replies View Related

Html Form Not Working / Solution For This?

Aug 6, 2009

Posting this in javascript because the problem might be caused by my scripting.

I made a 3 page long form using javascript, and the contents of the second page aren't submitted to the php script. link (http://rolstoel.dlnet.org/toevoegen.php?page=1)

View 4 Replies View Related

Switch Works In IE Not Firefox / Solution For This?

Feb 18, 2010

This works fine in IE only. code...

View 8 Replies View Related

Parameters Not Being Passed Into Functions / Solution For This?

Apr 20, 2010

I am working on this simple calculator that passes values from one function to another via paramters. I have used alert() to find what is being recieved, so far nothing. code...

View 2 Replies View Related

Simple Code Is Not Working For FF / Solution For This?

Oct 10, 2010

Simple random pic script that I found on the some other forum (I forget what it was) code...

code anchors to HTML markup [CODE]

it is working perfectly for Safari and Chrome. Nothing is showing for FF.

View 4 Replies View Related

Script Alert Not Showing Up / Solution For This?

May 25, 2011

I'm making a php/html page and using javascript to keep a count for me. code... The last button is just a test button, which will tell me what the value of "i" is, but I'm not getting anything when I cllick that button.

However if I change the onClick from alert(i), to alert('i') it will alert me a string, so I know the javascript is working.

View 1 Replies View Related

Replace Not Working For Some Reason / Solution For This?

Jul 26, 2011

I am trying to fix some datetime strings so I can convert form values into date objects so I can compare the dates in my validation process. the date time strings look like - 7/21/2011 8:00am

for some reason the am is not being replaced by " am" . here's the function code...

View 4 Replies View Related

Simple Solution To Collapsible Rows

Jul 4, 2006

I have been looking around for quite some time for a simple piece of code that allows rows to be collapsed in tables, so when you click on a link in the tbale the row beneath collapses. All i have found are very complex codes that i cant get to work or that dont work in both IE and FF.

View 6 Replies View Related

Script Not Working In Firefox / Solution For This?

Oct 28, 2005

I have a javascript running on my site at that disables right clicking (viewing source, saving pictures, etc.) that works beautifully in IE...but not in Firefox. Does anyone know of a solution?

View 6 Replies View Related

Image Resizing Not Working / Solution For This?

Sep 12, 2009

Code...

So the idea of the code is to load an image from a record, and echo both scenarios of 1) the image being a valid size and fitting in the table, or 2) the image width is too large, so add on width='100%' to the image. After both rows have been loaded, call the javascript function in PHP to hide the appropriate table row.

View 3 Replies View Related

GetAttribute Won't Get A Display Attribute / Solution For This?

Oct 29, 2009

I want to find out if an element has been hidden by setting display to 'none'.

When it has been hidden, I find "display: 'none'" in the firebug display, as expected. code...

View 6 Replies View Related

App Crashing When I Try To Instantiate An Array / Solution For This?

Jun 10, 2011

I have some java script in my vb.net application and I've been trying to figure out why my web app keeps crashing when i try to instantiate an array (i placed a comment where the app is crashing in the code below). Here's my code..

Hopefully the code above is enough for to figure out the issue. However, here's a mini recap of what's going on. A user selected a value from firstListBox and the function above copies it over to secondListBox. The code in the first condition works fine, but the code in the else block doesn't. Now, here's the catch/difference between the if and else statement...the Else block is basically doing the same thing as the if statement, except the values that needs to be copied are coming from a session variable (hdnSessionVariable = '<%=Session("playerId")%>'. I've commented out every line in the else statement and the app works until it hits the secondListBox.options[secondListBox.options.length] = newOption line. Anybody have any idea what's wrong here?

View 3 Replies View Related

Is There A Cross-browser XPath Solution?

Feb 21, 2007

Let's say you're getting some xml via ajax, instead of the ajax.responseText property you create a dom document using the responseXML property.

Is there a safe cross-browser way to query that document using xpath?

I know in IE you can use selectNodes/selectSingleNode, but what about other browsers?

View 3 Replies View Related

Javascript Back Button Solution?

Oct 3, 2007

I have a page where users can filter a list of links using javascript clicks. The user then clicks a link in that list, views the page and then clicks back on the browser to view the rest of the list but the javascript options they filtered in the list are gone resulting in them having to do it all over again. Is there a solution to this?

Would it work if I store their selections in a cookie each time they click a javascript button and then when they visit a link and click back (to what is presumably now a cached page) will I be able to have javascript that will read the cookie and reset their options again or is the cookie not loaded on a cached page?

Are there any common solutions to this kind of thing?

View 4 Replies View Related

Slidehow Script Won't Work For Me / Solution For This?

Sep 7, 2008

I am trying to use the slideshow javascript found at this site

but i can't get the following line of code to stick in my webpage code...

i follow the directions exactly, but that line above keeps getting 'spit' out of my page altogether...in fact, my webpage does not have any body tags per se, it keeps spitting them out when i try to put them in. the webpage functions just fine--no problems--but i can't get this slideshow script to work b/c i can't get the 'onload' instruction to stay--that body tag keeps getting stripped from my html page...

any ideas as to how to make this script work for me?

View 8 Replies View Related

JS Rotator Not Working On My Server / Solution For This?

Feb 24, 2010

I have installed an image rotator script on my page however the animation is not working i.e. the rotation between images is not taking place. The script works on my localhost though. code...

View 4 Replies View Related

Code Won't Work For Firefox / Solution For This?

Dec 13, 2011

I want to focus on my error field but this won't work in firefox code...

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved