INVISIBLE Popupwindow
Jul 23, 2005
i would like to have a popup window from a parent window. this window should
refresh every 5 seconds and reload parent window. OK i know its dumb, but i have my own reasons to test this. NEXT: is it possible to make this popup window invisible ?
View 1 Replies
ADVERTISEMENT
Oct 19, 2005
:'( I have an HTML page that has a list of songs on it, kinda like this:
1. Never let me go
2. The sun is shining
3. Cats and Dogs
I have programmed the list so that when the user clicks on a title, a popup appears and the user can select which media program he can use to hear the song, with real player, wmp, or quicktime.
it works fine. however, i wanted to create code so that when they choose their selection (for example, real media player) the popup page clears and then using document.write, I can print code for an activex plugin and an image with a javascript:self.close() function.
The code works the way it is right now, but the page does not clear and then show the plug in, it merely starts playing the activex plug in in the background, still with the original 3 list of players to chose, although i have used the document.clear() function before writing the code for the plugin. what am i doing wrong?
View 1 Replies
View Related
Jul 23, 2005
I had no experience with cookies up to today. I read about the properties of cookies. Then I started to write a few lines of Javascript into my html-page:
function SetMyValue(name, val)
{
document.cookie = name+"="+val;
}
and
SetMyValue('firstname','michael');
I did not set the properties "expires" and "domain".
When I put the page to my server, called it with the IE 6 and looked
into the IE for my cookie, it was not there. But when I made a cgi program
that showed HTTP_COOKIE, I saw, that the IE was sending it. So I had
an invisible cookie with my IE. Only when closed the IE and opened it again,
it was lost.-
View 4 Replies
View Related
Apr 1, 2006
I would like to make an hyperlink invisible, or disabled, with a click. The
hyperlink opens a new window (target = _blank) and once the new window is
shown, I don't want the hyperlink to be active anymore.
View 3 Replies
View Related
May 27, 2009
Simply question: I want to have a DIV start by being invisible, then fade in but I am not sure how to start in such a way that jQuery can make it fade in.
View 6 Replies
View Related
Aug 18, 2010
The code below sometimes works the way I want it to...by downloading a video from an external site and displaying a placeholder whenever the page loads. But most of the time, the video won't download and display until a user hovers their mouse over the blank area.
Is it possible to modify the code so that it functions consistently by always downloading and displaying the placeholder when the page loads? I don't want users to think there's a missing/broken video because there's a blank space where the video is supposed to be, and they don't realize they have to mouse over it.
<a href="#" onclick="return(false);" rel="videoGUID=4cd75af679b39g4963V828c00c581024ae86&" style="display: block; width: 550px; height: 310px" id="4cd75af679b39g4963V828c00c581024ae86" width="550" height="310">How to Take Care of Your Dog's Teeth: VetVid Episode 001</a><script type="text/javascript" src="http://360.sorensonmedia.com/4cd75af679b39g4963V828c00c581024ae86/embedv2.js"></script>
View 1 Replies
View Related
Oct 30, 2010
I understand how to make a div (table) invisible and then visible on a timer.. What I want to do is add a counter to my code and make the table flash 3 times and then stop with the table visible. all my code does right now is make the table flash on and off every 1 second. This is what I have right now:
<script language="javascript" type="text/javascript">
function magic() {
var d = document.getElementById('MagicTable');
if (d.style.display == "none")
d.style.display = "block";
[Code]...
View 2 Replies
View Related
Apr 10, 2009
i have a div with a dropdown box with autopostback="true" if i change the selction frm dropdown the div becomes invisible which i dont want how do i rectify it at present i have a html button control with a function to show the div
document.getElementById('DIV').style.display = 'block';
on load function i have the div style=none when i click on the button the div is visible
but when i change any selection frm drpdown the div becomes invisible
View 1 Replies
View Related
Aug 19, 2010
I have a div that is invisible all the time, and when one popup is activated, that div will fade in to darken the website background, like this:
And I'm using the following code when the darkness appears:
PHP Code:
function raiseOpacity(obj,counter) {
obj.style.opacity = counter/100;
counter +=2; //Raise 2% each time
if(counter < 100) setTimeout(function()
{raiseOpacity(obj,counter)},10);
//Repeat the incrementation again}raiseOpacity (document.getelementbyid('example'),0);
//Just an example of how the function is called.
But it is too slow, the browser hangs alot while doing this. Is there a faster way to do this fade in stuff? I've seen a lot of websites that do this and the browsers is fast, but I couldn't extract the code from them.
View 4 Replies
View Related
Jul 23, 2005
is it possible to make an select visible or invisible by selecting a checkbox.
View 1 Replies
View Related
Aug 1, 2006
I cannot succeed in getting any key event on a div that's been set
invisible by the style's MozOpacity property under firefox. I'm using
this method so that I can capture the mouse events. Unfortunately, it
appears to do so only with mouse events, not key events.
Is there a better solution than the following?:
View 2 Replies
View Related
Dec 24, 2010
refer to my development site - [URL]... If viewed in IE6, it has no header graphic and no border graphics. Before the implimentation of PNGFIX it looked like attachment image 1. After implimentation it looks like attachment image 2 The files in use are jquery-1.3.2.min.js and jquery.pngFix.js. I have also tried using jquery-1.4.4.min.js but this does not change the situation. jquery-1.3.2.min.js has been reverted to as it is native to the Coppermine Gallery.
View 3 Replies
View Related
Oct 19, 2011
how could i accomplish this? i know how to get visible objects, i.e. plusParents.filter(":visible")
i needthe opposite, preferably in a nice clean fashion.
View 1 Replies
View Related
Dec 13, 2011
I would like to insert a few blank spaces in a text string:
eg.
string = 123456(space)(space)(space)7891011
How do you do this?
View 1 Replies
View Related
Dec 6, 2006
i want to make my textbox invisible in certain cases, is it possible to do using javascript or by any other means.
View 2 Replies
View Related
May 9, 2010
I keep getting an object expected error at the start of my <body>I've set a form to value="Accountants" and <body onload="showindex()"> in an attempt to automatically submit this value to a js file whenever the page loads. My aim is to have dozens of html pages all using the same js file to return information based on the contents of that value.
Code is below
index.html
<head>
<script src="AccountantsLoad.js"></script>
[code]...
I'm probably not submitting the form value correctly or the js file 'url' variable isn't being put together right.
View 5 Replies
View Related
Jul 12, 2003
I have a radio button set that I am trying to use the onclick method to mae one row visible or the other. Let me show you what I mean. I have this javascript defined. I tried to use pointers but then I got element has no properties. So I've reverted to useing the full DOM call. Code:
View 11 Replies
View Related
Feb 7, 2009
How can I generate a visible content from an invisible iframe?I'm working on a project which involves scanning of content posted through HTTP.For example, a file uploaded to some web-mail client (i.e. Hotmail) as an attachment. If the file is suspected to be a virus, the user should informed and asked whether he wishes to post the file anyway. This scan is made before the file is sent to the server.The message should come from the browser (like JS alert box) but should contain some arbitrary HTML code, not supported by alert box.
Normally, when a file is uploaded, it is done in some hidden iframe. When the upload finishes, the server replies with JavaScript code which when run, notifies the user the upload is done.To inform the user he is uploading a Virus, I'm altering the server's reply to the HTTP post. The altered reply is a JavaScript code which generates some custom dialog box.
The problem is, the page is returned to some invisible iframe, which means the generated dialog box is also invisible. Simple JavaScript alert box works fine as it comes from the browser, and not as part of a webpage. how I can generate a visible dialog boxes, from the hidden iframe?
View 3 Replies
View Related
Jul 27, 2010
While my PHP is compiling, I have a loading bar. As soon as the body of my page loads, I make the bar invisible and the page contents visible by calling a javascript function with onload event.
Code:
<body onLoad="loadImages()">
When I put the javascript load function in the head between script tags as below it works.
Code:
<head>
<script type="text/javascript">
function loadImages() {
document.getElementById("showme").style.visibility = "visible";
document.getElementById("hidepage").style.visibility="hidden";
}
</script>
</head>
However, when I place the function in an external javascript file, it does not work, which is weird because all my other javascript functions in the external file work.
View 1 Replies
View Related
Dec 29, 2004
I have a form, its a very big form. About halfway down is a series of checkboxes (8 or so). Each one toggles whether the item I'm editing belongs to one of the categories or not. Each checkbox is linked to a subform that is invisible. (by subform I mean one or more form elements).
When a checkbox is clicked I want the subform to appear, and when it is unclicked I want it to disappear. Now the tricky part is, that when the page loads, it draws information from the database, and some of these checkboxes will already be clicked, so those forms need to be visible right from the start.
I'm just having far too many problems, can anyone point me towards some information that might help? Reply if I wasnt clear enough and you need clarification.
View 3 Replies
View Related
Nov 19, 2010
I'm working on a page that displays a query result upon loading, and has a DIV that (initially) is invisible and has 0px for height/width, plus a negative z-index. This DIV contains an iFrame that has a form in it for filtering the query. Upon clicking a link, javascript goes into action, giving the div height, width, visibility, and a high z-index so it "floats" above the main page (centered in the browser window.)
This is working flawlessly in FF, Safari, and Chrome. However, in IE7 and IE8, not only is the javascript engine slow and clunky, but once the DIV "appears" the form contained within is invisible (view source shows the code, it just isn't being parsed or displayed.) I'll include my code; can anyone think of a reason why it would show the DIV but not the form in IE7/8?
CSS
Code:
#inner_vi.hidden {
height:0px; width:0px; min-height:0px; min-width:0px; max-height:0px; max-width:0px;
display:none; visibility:hidden; background-color:#FFF; z-index:-11;
padding:0px; margin:0px; border:0px; position:absolute;
opacity:0.0; filter: alpha(opacity=0); top:0px; left:0px; zoom:1;
[Code]...
View 6 Replies
View Related
Aug 30, 2004
I have a page where I use <DIV> to control the visibility a text input area. The text input is made visible only if the Other radio button is selected. That all works fine.
The problem I'm having is when I press the forms Reset )<input type=reset>) button, the visibility of the text area is not restored to the state it was at when the page first loaded so I end up with the text area being displayed even though the Other radio button in no longer selected (reset did clear it).
I thought I could solve this by using a <FORM onReset="forcehide()"> event handler but I can't figure out how to get the object id of the div. The div is defined as follows: Code:
View 1 Replies
View Related
Apr 12, 2011
I'm trying to make a textbox invisible originally.......
And then visible on a submission......
However it doesn't work.
I can however do the opposite.
View 1 Replies
View Related
Sep 30, 2009
in login.php
<iframe name="foo" id="foo" src="flowerpodLogin.php" frameborder="0" style="display:none" >
</iframe>
[code].....
View 1 Replies
View Related
Oct 18, 2011
In a table control, for every row where the last 4 cells are empty (<td>....</td>), I need to make that row (<tr>....</tr>) invisible.
View 3 Replies
View Related
Jan 13, 2010
My problem is I had a drop down menu for a horizonal menu bar but the drop down items are about 4 items long . It works fine for first menu item, but the second one is positioned beneath the first one because it can't fit it's menu on the same line as the previous one.
I have set the submenus to hidden meaning they are there which is why they are taking up the space the other item needs to use when it's menu item is rolled over.
Is there a way to set items so they are invisible but not taking up room when invisible?
View 2 Replies
View Related