473,402 Members | 2,064 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,402 software developers and data experts.

JavaScript Style.display not working

25
I cant get the style.display property to work properly. I have this test html page:
Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.     <title>Test Javascript</title>
  6.  
  7.     <script language="javascript" type="text/javascript">
  8.         window.onload = function () {
  9.             document.getElementById("button").onclick = function () {
  10.                 var text = document.getElementByName("username");
  11.                 var loader = document.getElementById("ajax_laoder");
  12.                 if (loader.style.display == "none") {
  13.                     text.style.display = "none";
  14.                     loader.style.display = "inline";
  15.                 } else {
  16.                     text.style.display = "inline";
  17.                     loader.style.display = "none";
  18.                 }
  19.             }
  20.         }
  21.     </script>
  22.  
  23. </head>
  24.  
  25. <body>
  26.  
  27. <input type="text" name="username" value="Username" class="loginfield" maxlength="60" /><br />
  28. <img src="images/ajax-loader.gif" alt="AJAX Loading" id="ajax_loader" style="display:none" /><br />
  29. <input type="submit" id="button" value="replace" title="Replace" />
Basically, this has a textbox and a hidden gif, and a button called replace. When I click replace, the javascript doesnt do anything.
Oct 2 '10 #1

✓ answered by drhowarddrfine

I believe it's getElementsByName with an 's' which means it will return an array and not just text.

2 1908
drhowarddrfine
7,435 Expert 4TB
I believe it's getElementsByName with an 's' which means it will return an array and not just text.
Oct 2 '10 #2
dgourd
25
Wow. I completely looked that one over. Thanks a lot dude.
Oct 2 '10 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

2
by: Stewart | last post by:
Hi Experts. Please put the code sample below into an html document and take a look at in NN6+. One span should be shown while the other is hidden. Clicking the button should reverse this. ...
1
by: Tristan Miller | last post by:
Greetings. I am trying to write a function which toggles the display of a certain class of <div> elements in an HTML page. The CSS file initially sets some classes to "display: none", and...
13
by: Gunnar | last post by:
Hello, I am running into problems with a simple function which should change the style.display properties from 'block' to 'none'. I am able to change them from 'none' to 'block' as expected. ...
2
by: Erwin Moller | last post by:
Hi group, I have this obscure problem that really needs to be fixed, but I am out of ideas. Because the original script is very big, I'll try to summarize its functionality. Setup: - many...
2
by: Jake Barnes | last post by:
Imagine I've this block of HTML: <p>Alex Schein Mailing List <input type="checkbox" name="newslettersToUse" value="133156"> (<a href="mcControlPanel.php"...
1
by: RonY | last post by:
I have a dropdown which calls SetTimePeriod method on change the selection. In the JS function, I reset the field style.display based on what the selection is. This works fine with IE but not working...
3
by: WSPL5 | last post by:
I have a hidden span within a table column and I cannot unhide it using style.display='block' ?? Sample code <table> <tr> <td><input name="status" value=""></td><td><input type="button"...
2
by: plsHelpMe | last post by:
Hi All, I am facing a weired issue. I am having a search form with some of the fields on it and a button which submits these fields values. Functionaly everything is working fine but sometimes...
1
by: mukeshrasm | last post by:
Hi I am having problem like I have four forms which displayed when a tab is clicked. for all these forms initially I made style.display="none" inside div tag and then javascript function is used on...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.