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

Showing hidden answer when question clicked?

I've Googled, but can't find what I need, perhaps I asking the wrong
question!

I want a "FAQ" page on a web site, I hate those pages that scroll you to
the answer so and I figured that a good way to do it would be to have
hidden content under each question, something like this [the text in the
brackets should appear when the question is clicked]:

What is the first letter of the alphabet?
[The first letter of the alphabet is "A"]

What is 5 + 5?
[5 + 5 is 10]

I'd like to have each answer loaded, so it appears straight away, and
ideally in a form that I can easily edit.

Any suggestions?
--
Nigel M

"Time may be a great healer,
but he's a lousy beautician"
Jul 24 '05 #1
33 6249
Nigel Molesworth <re***@thegroup.com> wrote:
I've Googled, but can't find what I need, perhaps I asking the
wrong question!
Maybe people who asked or answered the same question also used the
X-No-Archive: yes header. Does this give a clue?

Actually, the question has been asked so often, and it's really not
about HTML, so I composed a short answer and sent it by E-mail
to the address in the From field of your message (it had a Reply-To
field, but it was syntactically malformed).

D
o
e
s

t
h
i
s

g
i
v
e

a

c
l
u
e
?

Okay, okay, I'm awfully nice today, so despite your destructive Usenet
conduct I'll give a few more clues:
I want a "FAQ" page on a web site,
Fine. Create it, using pure HTML, and if you want some extra sugar on
it, ask in a suitable group (maybe comp.lang.javascript). Don't forget
to post the URL.
I hate those pages that scroll you to the answer
If your personal dislikes matter that much, you are not prepared to
become the author of a (useful) FAQ.

Besides, use links, Luke. You can easily create a list of questions,
making them links to answers, on the same page (with the questions
repeated of course), or on separate pages (often a good idea if the
answers are long, perhaps with illustrations etc.).
so and I figured that a good way to do it would
be to have hidden content under each question,
That was a wrong idea.
What is the first letter of the alphabet?
[The first letter of the alphabet is "A"]
In some cases, it might make sense to combine the simple, robust, and
useful link idea with an advisory optional "quick answer" using the
title attribute (or some JavaScript or "DHTML" technique). For example:

....
<li><a href="first.html" title=
"The first letter of the alphabet is &quot;A&quot;. It comes from..."What is the first letter of the alphabet?</a></li>

....

where first.html repeats the question and the short answer, then
proceeds to explaining how "A" comes from Greek letter alpha, which in
turn etc. etc.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

Jul 24 '05 #2
In comp.infosystems.www.authoring.html, Jukka K. Korpela wrote:
Actually, the question has been asked so often, and it's really not
about HTML, so I composed a short answer and sent it by E-mail
to the address in the From field of your message (it had a Reply-To
field, but it was syntactically malformed).


OK, apart from the fuckwit, has anyone got an suggestions?
--
Nigel M

"Time may be a great healer,
but he's a lousy beautician"
Jul 24 '05 #3
Jukka K. Korpela wrote:
Nigel Molesworth <re***@thegroup.com> wrote:
I've Googled, but can't find what I need, perhaps I asking the
wrong question!
Maybe people who asked or answered the same question also used the
X-No-Archive: yes header. Does this give a clue?

Actually, the question has been asked so often, and it's really not
about HTML, so I composed a short answer and sent it by E-mail
to the address in the From field of your message (it had a Reply-To
field, but it was syntactically malformed).

Perhaps this was intentional?

Okay, okay, I'm awfully nice today, so despite your destructive Usenet
conduct I'll give a few more clues:
I want a "FAQ" page on a web site,
Fine. Create it, using pure HTML, and if you want some extra sugar on
it, ask in a suitable group (maybe comp.lang.javascript). Don't forget
to post the URL.

JavaScript is probably on-topic here.

http://openrico.org/demos.page?demo=ricoAccordion.html

This is AJAX-based. You'll find plenty of nice widgets and effects there.

I hate those pages that scroll you to the answer


If your personal dislikes matter that much, you are not prepared to
become the author of a (useful) FAQ.


I actually agree with the OP. However, the advantage of non-hidden text is
that all content is searchable.
Besides, use links, Luke. You can easily create a list of questions,
making them links to answers, on the same page (with the questions
repeated of course), or on separate pages (often a good idea if the
answers are long, perhaps with illustrations etc.).

I totally agree that it's worthwhile if the answers are lengthy. A whole
page load for 1k of text is unnecessary. It's excessive fragmentation.

so and I figured that a good way to do it would
be to have hidden content under each question,


That was a wrong idea.
What is the first letter of the alphabet?
[The first letter of the alphabet is "A"]


In some cases, it might make sense to combine the simple, robust, and
useful link idea with an advisory optional "quick answer" using the
title attribute (or some JavaScript or "DHTML" technique). For example:

...
<li><a href="first.html" title=
"The first letter of the alphabet is &quot;A&quot;. It comes from..."
What is the first letter of the alphabet?</a></li>

...

where first.html repeats the question and the short answer, then
proceeds to explaining how "A" comes from Greek letter alpha, which in
turn etc. etc.

Overall, one could go either way. It's rude to completely rule out somebody
else's incentives.

Roy

--
Roy S. Schestowitz
http://Schestowitz.com
Jul 24 '05 #4
On Tue, 14 Jun 2005 00:41:22 +0100, Roy Schestowitz
<ne********@schestowitz.com> wrote:
JavaScript is probably on-topic here.


s/probably/not/
--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2.1 spec: http://www.w3.org/TR/CSS21/
validator: http://jigsaw.w3.org/css-validator/
Why We Won't Help You:
http://diveintomark.org/archives/200..._wont_help_you
Jul 24 '05 #5
Nigel Molesworth wrote:
Jukka K. Korpela wrote:
[...]


OK, apart from the fuckwit, has anyone got an suggestions?


Plonk.
Jul 24 '05 #6
> What is the first letter of the alphabet?
[The first letter of the alphabet is "A"]

Perhaps table with <tr> or <tbody> segments with style attribute display set
to 'none', which the question anchor toggles to an expty string.
Something like:

function toggleAnswer(id) {
elem = document.getElementById(id);
elem.style.display = (elem.style.display == 'none')? '' : 'none';
}
....
....
<table>
<tbody>
<tr><td><span onclick="toggleAnswer('answer1');">What is the first
letter of the alphabet?</span></td></tr>
</tbody>
<tbody id="answer1" style="display:none;">
<tr><td>[The first letter of the alphabet is "A"]<td></tr>
</tbody>
</table>
Probably display:none could be applied directly to row element, dispensing
with additional tbody. Check CSS spec.

If some of these details are less than ideal, the list nazis will be sure to
help out.

Laurence

Jul 24 '05 #7
>> I hate those pages that scroll you to the answer

If your personal dislikes matter that much, you are not prepared to
become the author of a (useful) FAQ.


Are you an idiot? I only ask because it is obvious that your views on what
some else's FAQ should or should not be like are irrelevant to this group,
as are your opinions on who is qualified to author one. If you must be a
nazi, restrict yourself to comments about which it is actually possible to
be correct.

Better yet, don't be a nazi at all, just be helpful.

Laurence
Jul 24 '05 #8
Stan Brown wrote:
On Tue, 14 Jun 2005 00:41:22 +0100, Roy Schestowitz
<ne********@schestowitz.com> wrote:
JavaScript is probably on-topic here.


s/probably/not/


The original discussion did not mention JavaScript specificly. In fact, I
suspect that the OP was looking for a pure-CSS solution. But I agree,
technicalities of JavaScript are definitely off-topic. I was offering just
a link to one possible solution, which happened to involve XML and
JavaScript.

Roy

--
Roy S. Schestowitz
http://Schestowitz.com
Jul 24 '05 #9
"laurence" <la*******@iprimus.com.au> wrote:
Are you an idiot?


No, but you are a coward in addition to being a nuisance.
(Using first-name only when insulting someone in public.)
Please keep your malformed From field before you start to behave.
Thank you in advance.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

Jul 24 '05 #10
In article <42********@news.iprimus.com.au>,
"laurence" <la*******@iprimus.com.au> wrote:
I hate those pages that scroll you to the answer
If your personal dislikes matter that much, you are not prepared to
become the author of a (useful) FAQ.


Are you an idiot? I only ask because it is obvious that your views on what
some else's FAQ should or should not be like are irrelevant to this group,
as are your opinions on who is qualified to author one.


Uh, sorry, but that's BS. You don't need to agree with Jukka's opinions,
but it's a discussion group -- not a help desk -- and he has as much
privilege to express them here as does anyone else. And if you were to
put aside your aggressive demeanor long enough to get past his surly
side, you might actually learn something.
If you must be a nazi...
Get a grip.
Better yet, don't be a nazi at all, just be helpful.


You might be getting more help if you tried to listen more and take
offense less. Just a thought.

--
Joel.
Jul 24 '05 #11

"> Uh, sorry, but that's BS. You don't need to agree with Jukka's opinions,
but it's a discussion group -- not a help desk -- and he has as much
privilege to express them here as does anyone else. And if you were to
put aside your aggressive demeanor long enough to get past his surly
side, you might actually learn something.

As a matter of fact, Jukka constantly criticises others for the relevance of
their posts.
Nothing aggressive about my demeanor at all. It was a fair question, given
his conduct.
If you must be a nazi...


Get a grip.

He, and many others DO behave like nazis.

It is they, and apparently you, who seek to muzzle, control, restrict, and
generally bully innocent posters.

Laurence.
Jul 24 '05 #12

"Jukka K. Korpela" <jk******@cs.tut.fi> wrote in message
news:Xn*****************************@193.229.0.31. ..
"laurence" <la*******@iprimus.com.au> wrote:
Are you an idiot?


No, but you are a coward in addition to being a nuisance.
(Using first-name only when insulting someone in public.)
Please keep your malformed From field before you start to behave.
Thank you in advance.


That's LAURENCE HEYWOOD, sunshine. la*******@iprimus.com.au. Mobile phone
number: +61 0403 755 464. Almost every post you make contains an insult.
Even if attempting to be helpful, you can't stop yourself being insulting.
It stems from your insecurity. You cling to groups like this, insulting
willy nilly, in an adolescent attempt to feel important.

As I say, just be helpful, as you most clearly can be.

Your pal,
Laurence
Jul 24 '05 #13
OK, apart from the fuckwit, has anyone got an suggestions?


Hear Hear.
Jul 24 '05 #14
laurence wrote:

"Jukka K. Korpela" <jk******@cs.tut.fi> wrote in message
news:Xn*****************************@193.229.0.31. ..
"laurence" <la*******@iprimus.com.au> wrote:
Are you an idiot?


No, but you are a coward in addition to being a nuisance.
(Using first-name only when insulting someone in public.)
Please keep your malformed From field before you start to behave.
Thank you in advance.


That's LAURENCE HEYWOOD, sunshine. la*******@iprimus.com.au. Mobile phone
number: +xxxxxx. Almost every post you make contains an insult.
Even if attempting to be helpful, you can't stop yourself being insulting.
It stems from your insecurity. You cling to groups like this, insulting
willy nilly, in an adolescent attempt to feel important.

As I say, just be helpful, as you most clearly can be.


I once pointed out some similar observations. He did that in css-discuss and
alt.html. He intimidates posters, which is unhealthy to a community of
mutual support and constructive, friendly discussion.

Roy

--
Roy S. Schestowitz
http://Schestowitz.com
Jul 24 '05 #15
On Tue, 14 Jun 2005 17:54:14 +1000, "laurence"
<la*******@iprimus.com.au> wrote:
If you must be a nazi...


Get a grip.

He, and many others DO behave like nazis.


According to long time usenet tradition, this thread has ended and you
have lost the debate by default.

You may want to look here to understand why.

<http://members.tripod.com/~goodwin_2/law.html>

--
Rex
Jul 24 '05 #16
Jukka K. Korpela wrote:
Besides, use links, Luke. You can easily create a list of questions,
making them links to answers, on the same page (with the questions
repeated of course), or on separate pages (often a good idea if the
answers are long, perhaps with illustrations etc.).


Exactly--not if the answers are short. For a perfectly awful FAQ
implementation (about the country singer Dierks Bentley), see

http://www.dierks.com/?content=faq.
Jul 24 '05 #17

"Jan Roland Eriksson" <jr****@newsguy.com> wrote in message
news:pf********************************@4ax.com...
On Tue, 14 Jun 2005 17:54:14 +1000, "laurence"
<la*******@iprimus.com.au> wrote:
If you must be a nazi...

Get a grip.
He, and many others DO behave like nazis.


According to long time usenet tradition, this thread has ended and you
have lost the debate by default.

You may want to look here to understand why.

<http://members.tripod.com/~goodwin_2/law.html>

--


Nice. Thanks for link. He's still a nazi.

Rex

Jul 24 '05 #18

"Jan Roland Eriksson" <jr****@newsguy.com> wrote in message
news:pf********************************@4ax.com...
On Tue, 14 Jun 2005 17:54:14 +1000, "laurence"
<la*******@iprimus.com.au> wrote:
If you must be a nazi...

Get a grip.

He, and many others DO behave like nazis.


According to long time usenet tradition, this thread has ended and you
have lost the debate by default.

You may want to look here to understand why.

<http://members.tripod.com/~goodwin_2/law.html>


Nice link, though irrelevant in this case. Note the capitalisation. My use
of the term in question is not capitalised, and is used in the way of simile
(and accurately, in an informal sense) while the good professor's concern
was with reference to and discussion of certain actual and particular
distasteful persons in history.

I appreciate your general concern, and am in accordance with you on it.
Indeed I support you, and all those who desire to see these groups operate
in a harmonious, helpful, useful way. That has been my whole point. Why so
many think it appropriate to be obnoxious, surly and intolerant in these
discussions is beyond me. Why so many others defend their disgusting
behaviour is an even bigger mystery.
Jul 24 '05 #19
On Wed, 15 Jun 2005 03:51:57 +1000, "laurence"
<la*******@iprimus.com.au> wrote:
"Jan Roland Eriksson" <jr****@newsguy.com> wrote in message
news:pf********************************@4ax.com.. .

<http://members.tripod.com/~goodwin_2/law.html>

--


Nice. Thanks for link. He's still a nazi.


*plonk*

I gave you three chances to start making sense, but instead you just
keep bleating"Nazi".
--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2.1 spec: http://www.w3.org/TR/CSS21/
validator: http://jigsaw.w3.org/css-validator/
Why We Won't Help You:
http://diveintomark.org/archives/200..._wont_help_you
Jul 24 '05 #20
On Tue, 14 Jun 2005 12:59:19 -0400, Harlan Messinger
<hm*******************@comcast.net> wrote:
Exactly--not if the answers are short. For a perfectly awful FAQ
implementation (about the country singer Dierks Bentley), see

http://www.dierks.com/?content=faq.


Another how-not-to
http://www.woodweb.com/knowledge_bas...knowledge.html
Jul 24 '05 #21
CJM

"Jukka K. Korpela" <jk******@cs.tut.fi> wrote in message
news:Xn*****************************@193.229.0.31. ..
"laurence" <la*******@iprimus.com.au> wrote:
Are you an idiot?


No, but you are a coward in addition to being a nuisance.
(Using first-name only when insulting someone in public.)
Please keep your malformed From field before you start to behave.
Thank you in advance.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html


Yes Yucca, you are an idiot, of sorts...

Blessed with arguably more knowledge on these matter than anyone else on
here, yet wholly unable to function as a helpful member of this community.

Come here to learn, or come here to help others learn. If that is too
tiresome for you, then don't come here at all.

If anyone were to search Google Groups for your name, they would come across
a litany of posts full of conflict and disdain. I wonder if you are merely a
better caste or troll.
Chris Martin

(but just for the record, I dont think that calling people a Nazi is called
for regardless of the provocation!)
Jul 24 '05 #22
CJM
"Andy Dingley" <di*****@codesmiths.com> wrote in message
news:n7********************************@4ax.com...
On Tue, 14 Jun 2005 12:59:19 -0400, Harlan Messinger
<hm*******************@comcast.net> wrote:
Exactly--not if the answers are short. For a perfectly awful FAQ
implementation (about the country singer Dierks Bentley), see

http://www.dierks.com/?content=faq.


Another how-not-to
http://www.woodweb.com/knowledge_bas...knowledge.html


Come on, you two... How about some *good* examples?

For my part, most of the 'good' examples I've seen were JS-based, which
obviously is an issue, but I'd be keen to see if there were some *similar*
CSS-based examples.

CJM
Jul 24 '05 #23
On Wed, 15 Jun 2005 16:13:36 +0100, "CJM" <cj******@REMOVEMEyahoo.co.uk>
wrote:
Come on, you two... How about some *good* examples?


I only know how to do it with JS. You can trap a hover in CSS, but you
don't want to show answers until after a click.

Jul 24 '05 #24
CJM

"Andy Dingley" <di*****@codesmiths.com> wrote in message
news:6e********************************@4ax.com...
On Wed, 15 Jun 2005 16:13:36 +0100, "CJM" <cj******@REMOVEMEyahoo.co.uk>
wrote:
Come on, you two... How about some *good* examples?


I only know how to do it with JS. You can trap a hover in CSS, but you
don't want to show answers until after a click.


Yeah, that's what I thought...

Aesthetically, it's the solution I prefer, but it's just the ole javascript
issue.

Hmmm...
Jul 24 '05 #25
Els
CJM wrote:
"Andy Dingley" <di*****@codesmiths.com> wrote in message
news:6e********************************@4ax.com...
On Wed, 15 Jun 2005 16:13:36 +0100, "CJM" <cj******@REMOVEMEyahoo.co.uk>
wrote:
Come on, you two... How about some *good* examples?


I only know how to do it with JS. You can trap a hover in CSS, but you
don't want to show answers until after a click.


Yeah, that's what I thought...

Aesthetically, it's the solution I prefer, but it's just the ole javascript
issue.


Why not do it server side? Something like brucie's butterflies, only
different :-)

--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
Now playing: Girlschool - Race With The Devil
Jul 24 '05 #26
On Wed, 15 Jun 2005 16:13:36 +0100, "CJM" <cj******@REMOVEMEyahoo.co.uk>
wrote:
"Andy Dingley" <di*****@codesmiths.com> wrote in message
news:n7********************************@4ax.com.. .
On Tue, 14 Jun 2005 12:59:19 -0400, Harlan Messinger
<hm*******************@comcast.net> wrote:
Exactly--not if the answers are short. For a perfectly awful FAQ
implementation (about the country singer Dierks Bentley), see

http://www.dierks.com/?content=faq.


Another how-not-to
http://www.woodweb.com/knowledge_bas...knowledge.html


Come on, you two... How about some *good* examples?


<http://xml.silmaril.ie/> ?

--
Rex
Jul 24 '05 #27
CJM

"Els" <el*********@tiscali.nl> wrote in message
news:15******************************@40tude.net.. .
Why not do it server side? Something like brucie's butterflies, only
different :-)


I'm not sure what 'brucies butterflies' are, but...

We could do it server-side, but it's just an extra round-trip to the
server...
Jul 24 '05 #28
On Wed, 15 Jun 2005, CJM wrote:

"Els" <el*********@tiscali.nl> wrote in message
news:15******************************@40tude.net.. .
Why not do it server side? Something like brucie's butterflies, only
different :-)


I'm not sure what 'brucies butterflies' are, but...

We could do it server-side, but it's just an extra round-trip to the
server...


Then implement both, so that those with js enabled get the quick
response and lower server load, but those without js still get the
desired result.
Jul 24 '05 #29
CJM

"Alan J. Flavell" <fl*****@ph.gla.ac.uk> wrote in message
news:Pi*******************************@ppepc56.ph. gla.ac.uk...

Then implement both, so that those with js enabled get the quick
response and lower server load, but those without js still get the
desired result.


Probably a very sensible idea...
Jul 24 '05 #30
Nigel,

It won't work for ALL your visitors, but for people who have browsers
that display the ALT text when you move over an image, you could try
the ALT= tag for an image.

<a href="answerURL" target="new"><img src="answer.gif" height="20"
width="48" alt="The first letter of the alphabet is A" border="0"></a>

You would want to have the answer available at the "answerURL" address
in case the user has a browser that does not display the ALT image. The
top of your page could tell the user to move their mouse over the word
"Answer" to see the answer, and add (if you don't see the answer, click
there).

Since you'd re-use the "answer.gif" every place you need it, the image
wouldn't add lots of code to your page.

I'm sure there are many other methods you can use to accomplish your
purpose, like using OnMouseOver or OnClick.

Look at http://www.godloveseveryone.org/

Move your mouse over the "Get Out of Hell Free" card and you'll see an
ALT message (if you are using a compatible browser), and if you click
the image, you get an Alert message, if Javascript is active. (Just
now, I saw the ALT text on IE but not on MF, but I did see the alert
message on both.)

If you have puzzle-lovers in your family, be sure to download mazes
that contain their first names. See my signature. And if you're going
to make a purchase from Amazon anyway, see my postscript to see how to
help us at no cost to you.

John
www.GodLovesEveryone.org ("God Loves yourname" maze)
www.MAZES.com/readers/maze.asp ("yourname is an amazing reader" maze)

P.S. If you shop at Amazon, please use our links to get there:
http://www.godloveseveryone.org/donate/amazon.htm
thanks in advance

Jul 24 '05 #31
Els
John wrote:
It won't work for ALL your visitors, but for people who have browsers
that display the ALT text when you move over an image, you could try
the ALT= tag for an image.


That's not what alt text is for. IE uses it when the appropriate title
attribute is missing. To have a tooltip on all graphical browsers, use
title, not alt. The alt attribute is to be added on /all/ images, but
is for display if for whatever reason the image cannot be displayed.
(leave it empty on purely decorative images, as the alt text wouldn't
add any value there)

--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
Now playing: New Adventures - Come On
Jul 24 '05 #32
Thanks, Els,

Using "Title=" instead of "Alt=" means that Mozilla Firefox now
displays part of the title text when I move the mouse over the image.

Interestingly, though, Firefox only displays one line (19 words) of the
title text, while MIE displays it as a paragraph.

In any case, it is an HTML only method of displaying short answers that
the original questioner asked about. I went ahead and created a small
page illustrating my very simple method:

Look here: http://www.mazes.com/testing/q-and-a.htm

Hope this is helpful to a few people. (I know it is much simpler than
most people in this group use).

John
Please use our link when you visit Amazon.com
http://www.godloveseveryone.org/donate/amazon.htm

Jul 24 '05 #33
Els
John wrote:
Thanks, Els,

Using "Title=" instead of "Alt=" means that Mozilla Firefox now
displays part of the title text when I move the mouse over the image.

Interestingly, though, Firefox only displays one line (19 words) of the
title text, while MIE displays it as a paragraph.

In any case, it is an HTML only method of displaying short answers that
the original questioner asked about.
IIRC, a tooltip also isn't displayed long enough to be read properly
by everyone, and it's also a rather small font type. So, even though
it seems to be an HTML way, it isn't really. I mean - it's HTML
alright, but it's not a good method of displaying short answers. IMO a
tooltip needs to be only an extra. Not something one should have to
count on.
I went ahead and created a small
page illustrating my very simple method:

Look here: http://www.mazes.com/testing/q-and-a.htm
<whisper>Pssst! You forgot the alt attribute on the images!</> ;-)
Hope this is helpful to a few people. (I know it is much simpler than
most people in this group use).


The tooltip could be done in pure CSS, which would provide a larger
font, a larger box, and it stays as long as the mouse is hovering over
the image, but it still wouldn't be a real solution, as not
everybody's browser will display it, and the answer to the question is
not exactly something I'd call a 'nice to have' on the site :-)

--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
Jul 24 '05 #34

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

Similar topics

4
by: Nigel Molesworth | last post by:
I've Googled, but can't find what I need, perhaps I asking the wrong question! I want a "FAQ" page on a web site, I hate those pages that scroll you to the answer so and I figured that a good...
2
by: c.anandkumar | last post by:
Hi All - I have some problems getting a small piece of javascript working correctly for Firefox. Here is what I am trying to do - 1. I have a form (like a search form) 2. I have many groups...
5
by: gregmercer | last post by:
I have the following html sample, where I'd like to have a show and hide two divs, one replacing the other. Following these two divs is a third div (the bluediv) which I would like to have placed...
2
by: Kevin | last post by:
I've got a problem where I need to know the value of a hidden field inside a repeater once a button is clicked. Ths code inside my repeater looks like this: <input id="conf_num" type="hidden"...
3
by: Tom | last post by:
Sorry... new to this. I trying to figure out how to do a page redirect when someone clicks a treeview node. Does someone have a code snippet for this?
4
by: Hans Merkl | last post by:
Hi, Is there a way to show the column headers of a GridView control even if there is no data? The only thing I see is the EmptyDataTemplate but I would also like to display the column headers. ...
5
by: graphicsxp | last post by:
Hi, I have can upload a file to the server from my aspx page using the uploadfile control. When the user click on submit I'd like to show an animated gif while the file is being uploaded. But how...
5
by: james.calhoun | last post by:
I feel like this should be really easy... I want a hidden field in a form to have its value defined when someone clicks on a link. So if they click on link "A" the value of the hidden field...
6
by: =?Utf-8?B?L2Rldi9udWxs?= | last post by:
Hello, i am using visual studio 2003 enterprise architect version. I am making apps for the .Net framework 1.1. While testing an interface, i discovered something strange. In this application...
5
by: anonymousstar | last post by:
Hi all, I am new to these forums and decided to join one (this one) after 5 days of researching to try and solve my problem. I am creating a booking type of calendar. It will be run by an...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.