PDA

View Full Version : Uses For Hidden Text Outside of GiTP



C.Penguin
2010-08-25, 12:08 PM
This might not be the right place for this, but is it possible to embed text like this on a site powered by google

Fifty-Eyed Fred
2010-08-25, 09:31 PM
Do you mean
spoiler text
or white text?

IonDragon
2010-08-25, 09:56 PM
Threads for lists of things are frowned upon, and usually end up locked. Could you be more specific in your question?

valadil
2010-08-26, 01:13 PM
Do you have access to the html for the site? If so, you can write a page with hidden content and a button you have to click to show it. I'd do so using jquery.

The button would have a click event that looked something like this:


$("#id_of_button").click( function() {
$("#id_of_hidden_text").toggle()
});