in html if you use disabled the variables normally do not pass
either use readonly tag
e.g. <input type="text" name="one" readonly>
or try using some javascript
<input type="hidden" name="two" value="document.form1.one.value">
I still have not...
you need to use the self.focus() function on the onBlur event
This has to be called on the popup
first make a simple window.open call.
<html>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function topWindow(){
popup =...
mwolf00
The script that you mentioned here and in my post
did not really work.
What I had done was create a window using the window.open method.
There I had given an onClick event using your code. The browser still asked for confirmation.
I was using IE 5.0
When I used the window.close()...
I have done this for Internet explorer
Basically you need to create two arrays in JSP.
The first may have game name ,game code and player name. Here game code is a primary key.
The second will have player name and and game code. I am assuming that you are actually passing the game code when you...
you need to use window.parent.location
This is an example
1.htm is the first file, abc.htm is the popup,def.htm the redirection
1.htm
<html>
<head>
<script language="JavaScript">
function redopen()
{
window.open('abc.htm','trial');
window.parent.location = 'def.htm';
}...
hello humble programmer
I have a code , a mixture of Javascript and ASP
There are 2 related dropboxes.
If the user selects a value in one, automatically the second dropbox is enabled and filled with values.
If the user selects a different item in the first dropbox, the second dropboxes...
you could use this I have checked it in netscape 7 and ie 5.0
replace the names of the checkboxes
<HTML>
<HEAD>
<script language="JavaScript">
function test(passed)
{
window.document.FORM1.checkbox2.disabled =false;
window.document.FORM1.checkbox3.disabled =false...
I have been told this too many times and cannot answer.
Since JSP(Java Server Pages) is compiled only once while PHP is interpreted every time, after the first compilation JSP is much faster than PHP.
I have read at many places that PHP is the fastest in scripting languages. How do I answer this?
Hi guys
I need to install php,mysql and postgresql into our linux server (SUSE 7.0). I never had to do everything as I was using a preconfigured Redhat version earlier.
I had expected it to have php but when I tried to run a test file, it said "application x-httpd-php not found". I...
one thing that you may want to add for netscape , it sees the height less by 19 pixels if you are using Netscape 4x
This code basically
if (navigator.appVersion.indexOf("4.") != -1 &&
navigator.appName.indexOf("Explorer") != -1) {
Scrnht = screen.height;
}...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.