The function that's called when the body onload event fires is not the one that has the problem. Actually the save() function is the one that uses the ActiveX, and it's called when the save button is pushed, by that time the body is completely loaded.
If you see something else... please let me know.
Thanks
Kenia...
User Profile
Collapse
-
Hi and thanks for replying.
No, it's not a .Net control, it's the ActiveX control used by InternetExplore r.
Below is the code of my page
[HTML]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id = "head">
<meta http-equiv="Content-Type"...Leave a comment:
-
webBrowser control embedded in page doesn't get body element
Hi,
I'm trying to get the body element of a page using a webBrowser control. Right now I'm testing in javascript to make sure i can access the body through the webBrowser control, but soon I'll create an activeX control and use the control from there.
My code is:
var wb = document.getEle mentById("wbSav e");
wb.Navigate(win dow.location);
var body= wb.Document.bod y;
The point is I don't... -
Problem inserting german and french characters
Hello everybody!
I have a database that's supposed to hold data in different laguages, such as english, spanish, hebrew, german and french, but in priciple users may want to store info in any language. The charset I'm using is utf8 and collation utf8-general-ci, so that any character is correctly stored, however I've just found the following problem:
-When I insert any special character of german language it doesn't get stored... -
How to attach a function with parameters to an event using DOM
Hello!
I need to attach a function with parameters to an event using the DOM standard, but i can't find a way to do it. I've used the following :
element.event = function;
But in this case function doesn't receive any parameter, and I don't know any other way to do it.
If anyone can give me hand on this, I'll really appreciate it.
Thanks!!! -
You're right, I haven't written that code, but it's just because I thought that it would be like in the case of the select element in which one you don't have to select the options by yourself, you just attach a function to an event when you want to do something in particular when it fires.
Anyway, now I have another question, I could do this
option.onclick = anyFunction;
But then I would be calling a function with no...Leave a comment:
-
Radio buttons not getting selected
Hi everyone!
I'm using the DOM standard to create a set of radio buttons, but I can't select any of them. It means that they appear in the page, but when I click on any of them nothing seems to happen. This is the code I've written to create the radio buttons
var list = document.create Element("table" );
var tbody = document.create Element("tbody" );
var values = new Array("Hoy","Ay er","Ultima...
No activity results to display
Show More
Leave a comment: