473,287 Members | 1,395 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,287 software developers and data experts.

Ocultar DIV mientras se carga

Hola,
Quisiera saber como ocultar una sección <div></divmientras la
página se está cargando.
Saludos,
Jose Luis

Jan 11 '07 #1
1 3545
moga wrote:
Quisiera saber como ocultar una sección <div></divmientras la
página se está cargando.
If you want to hide an element you can manipulate its CSS inline style e.g.
var element = document.getElementById('divId');
if (element) {
element.style.display = 'none';
}
To show the element again set
element.style.display = '';
--

Martin Honnen
http://JavaScript.FAQTs.com/
Jan 11 '07 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Diego | last post by:
Hi, Using gcc 2.96 This message was suggested by a thread started by Knak on 21/03/04 The question is: When I run the following code, if I want to introduce a second pile of data, the...
3
by: martinnapole | last post by:
Después de leer todo lo que sigue, me di cuenta que esto es un juego y yo decidí jugar. Sí, el que no arriesga no gana, asique YO JUEGO. Vos? Seguro que TIENE QUE HABER OTROS QUE PIENSAN IGUAL,...
0
by: Mario Lacunza | last post by:
Hello, I have troubbles in this code when I try to resize the form, all the widgets dont move. Any idea? Thansk in advance!
1
by: crow | last post by:
http://www.pagina12.com.ar/diario/elpais/1-72984-2006-09-14.html Por Miguel Bonasso Desde La Habana Me había preparado para verlo, pero la realidad fue mucho más fuerte. Incluso le llevaba de...
1
by: gandalf | last post by:
CON LA PASION DE SIEMPRE HABLO DE CHAVEZ, DE LA MEDICINA CUBANA... Y DE SU PROPIA MUERTE Relato de la nueva gran batalla de Fidel El líder cubano mostró cómo evoluciona su recuperación en el...
8
by: Gonza | last post by:
Hi group, i'm getting the following excepction while trying to serialize a class: Types 'NYC.TrueFinance.BusinessEntities.ExtendedBaseEntityTypeData.EntityTypes' and...
8
by: Marc | last post by:
Hi all, I have to generate and send to a printer many 6 digit alphanumeric strings. they have to be unique but I cannot check in a database or something like that if it have already been printed....
1
by: LuisDavid | last post by:
Hola grupo tengo un codigo que como resultado me da un valor ejemplo (p0, p1,......), que al visualizarlo por ejemplo parte del codigo es: <script ....> function valores(){ ..... codigo........
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 7 Feb 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:30 (7.30PM). In this month's session, the creator of the excellent VBE...
0
by: MeoLessi9 | last post by:
I have VirtualBox installed on Windows 11 and now I would like to install Kali on a virtual machine. However, on the official website, I see two options: "Installer images" and "Virtual machines"....
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
by: marcoviolo | last post by:
Dear all, I would like to implement on my worksheet an vlookup dynamic , that consider a change of pivot excel via win32com, from an external excel (without open it) and save the new file into a...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...

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.