How to cancel the saveFavorite behavior's onload event?
Thu, 27 Oct 2005 10:26:17 -0700
I'm looking for a way to prevent IE from restoring the URL's of nested
<IFRAME>'s when the user selects a saved favorite.
*BACKGROUND* When the user chooses the /Favorites/Add to Favorites/ menu
command, IE saves not only the URL of the page, but also the URL of all
nested <IFRAME>'s. So, when the use ...
|
ActiveXObject("htmlfile") and Jscript.NET
Tue, 11 Oct 2005 11:07:48 -0700
[This was previously posted on microsoft.public.dotnet.languages.jscript but
so far got no reply there. Now trying my luck here.]
Consider the following code
var doc = new ActiveXObject("htmlfile");
doc.write("abc");
When executed under WSH this code runs without problems. However, compiling
as
jsc. ...
|
Javascript not executing
Tue, 11 Oct 2005 07:57:08 -0700
Whenever I invoke the browser from the command line or with the WebBrowser
control in VB6, none of the Javascript on the invoked page executes until I
do a refresh. Anyone have any ideas?
--
Mike Hollibaugh ...
|
popup jscript problem?
Sun, 9 Oct 2005 02:02:04 -0700
I have the following code to popup a window and set an img's src property:
< script type="text/javascript">
function isMethodType(s)
{
return (s == "function" || s == "object");
}
var mainPic = document.getElementById("mainPic")
mainPic.onclick = function ()
...
|
Jscript .NET Questions
Fri, 7 Oct 2005 13:57:02 -0700
I have in the past developed HTML pages with Javascript.
I have heard that "JScript .NET" is much faster/better.
To create web pages with JS .NET do I have to use Visual Studio .NET?
Do these web pages have to be compiled?
If I create a web page with "JS .NET" on it, do my client users have to
have the Mi ...
|
Repeatedly load same image without IE aborting earlier requests
Thu, 29 Sep 2005 01:56:04 -0700
Hi
Firstly I must confess I am not a Java Script developer. However I would
like to create a simple script that fires off consecutive requests for the
same URL so that I can performance profile my WebServer and WAS using
IEWatch. Unfortunately IE aborts a request as soon as it sees a subsequent
reques ...
|
Problem with fulscreen when I use multiple media players on 1 page
Wed, 28 Sep 2005 05:06:03 -0700
when n is number of player:
function FullScreen(n){
try{
var p=window.document.getElementById("player"+n);
if (p.playState==3)
{
if(gFullScr>0)
{ window.document.getElementById("player"+gFullScr).fullScreen=
'false';
} gFullScr=n;
p.fullScreen = 'true';
} ...
|
|
|
brain freze on location.href
Wed, 21 Sep 2005 12:02:45 -0400
I have some code that has some ASP pages in a frameset. This line of code
parent.filmDisplay.location.hef=ActionOptions[ACTION_PRINT].Action +
FFIDArray.length;
is executed. I would expect the page to be requested, and the results sent
to that frame. This page is already loaded in that page. The only ...
|
Function for sendig form, and disable it after that
Mon, 19 Sep 2005 02:39:02 -0700
Hi all,
I have made function like this:
----------------------------------
function sen(a) //fj-a za slanje formi i blokiranje tipke
{
window.document.forms[0].submit();
document.all.item(a).disabled=true;
}
----------------------------------
this function works ok. i mean it sends form ...
|
IE crashes with "Integer division by zero" after loading page
Fri, 16 Sep 2005 16:12:28 +0200
Hi all
Can anyone tell me what's wrong with my IE application? Every about 10th
time, it crashes IE with the error message "Integer division by zero" AFTER
loading my page (verified that with logging).
Code is at http://www.want.ch/iecrash/role.html, it's quite substantive.
I'll be using the code locally ...
|