document.write prevents from submitting a form
Tue, 22 Mar 2005 14:44:38 +0100
Hello,
can you please consider this html page:
<html>
<head>
< script language="JavaScript">
function openwin(){
window.document.write('wait..');
}
</script>
</head>
<body>
<form name="AForm" action="page2.htm" method="POST" onSubmit="openwin();">
<span><input type="Submit" class="defaultB ...
|
Re: can I do that? update file link - sorry
Mon, 21 Mar 2005 18:18:49 -0000
What I am trying to do is access the child element (ie.: idDivConfigChild)
of a DIV (ie: idDivConfig ) itself contained in a Parent DIV( idOutput )
The idea is to hide all the other Child Divs and only display the selected
Child DIV
The HTML page all this is supposed to work from (everything else is ok) can
...
|
can't hide SPANs elements within a DIV element
Fri, 18 Mar 2005 00:02:39 -0000
I am attempting to create a function that will hide all SPANS within an ided
DIV ="idMain", then only display one span, but this function gives an error
when it gets to elChildElement as being undefined.
Can anyone help
function show_hide_Div(theDiv,DivsToHide,TheDivToShow) {
elDiv = document.all.theDiv;
...
|
problem hiding a group of SPANs
Thu, 17 Mar 2005 22:36:07 -0000
I am attempting to create a function that will hide all SPANS with an ided
DIV ="idMain", then only display one span
function show_hide_Div(theDiv,DivsToHide,TheDivToShow) {
elDiv = document.all.theDiv;
elChildElement = elDiv.DivsToHide;
alert (elChildElement);
for (x=0; x<elChildElement.length; x++){
el ...
|
DropDownList
Thu, 17 Mar 2005 12:03:47 -0000
Hi,
What I want is to limit the number of options displayed in the drop down
part of a dropdownlist and provide a scroll bar to view the hidden options,
at present this seems to be done by the 'system', IE?, when the drop down
part hits the screen top or bottom - I don't want the dropdown part to be
that bi ...
|
Tab out vs. Mouse click
Wed, 9 Mar 2005 16:04:52 +0530
Hi All,
I have created an ASP.NET page that basically consists of a table having
text boxes in all cells. The table is created using client side java script.
There are some calculations being done when user changes text in any text
box and moves to the next text box. This is done in the Text Changed event
i ...
|
BUG: RTL and english text in links in a relative postion div
Sun, 20 Feb 2005 06:05:37 +0200
Hi,
Below is a short code snippet to reproduce the bug.
The hebrew link works while the english one does not.
You will probably need hebrew enabled os to view this.
Is there a way arround it? I need to use both rtl and relative positioning.
TIA
Dani
<html dir="rtl">
<body>
<div style=" ...
|
|
|
IFRAME src change Giving Access Denied
Fri, 18 Feb 2005 15:16:07 +0530
Hi,
I am trying to do something like this.
testMainFrame.htm
--------------------
<html>
< script>
function changeSrc()
{
window.frames["myFrame"].location.href = "testImage.htm"; // This gives
me an access denied error
}
</script>
<body>
<iframe name="mainFrame" id="mainFrame" src="testFra ...
|
navigator.cookieEnabled
Mon, 14 Feb 2005 12:18:12 +0100
With IE 6.0 navigator.cookieEnabled always returns 'true', even if cookies
are manually disabled. Has someone encountered this? Is there any other way
to determine if cookies are enabled on client side?
Thx,
Agoston
...
|
table height 100% inside td
Mon, 14 Feb 2005 11:58:06 +0100
Hi!
<table>
<tr>
<td>
<table style="height: 100%;">
...
</table>
</td>
</tr>
</table>
In this case (at least in IE 6.0) the inner table won't automatically fill
the td.
Is there a way to have it fill it?
Thx,
Agoston
...
|