The question says it all. :)
|
|
|
|
|
|
|
Here is a short pure-javascript example. Assume you have a div with the id "maincontent".
Of course, things are a lot easier (especially when you want to do more complicated things) with jQuery. |
||
|
|
|
|
I believe that this tutorial on jQuery has an example that might help you: http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery |
||
|
|
|
|
Here's an example in Prototype:
|
||
|
|
|
|
A more specific question might give more helpful results, but here's a simple pair of snippets that shows and later updates text in a status container element. // give some visual cue that you're waiting container.appendChild( document.createTextNode( "Getting stuff from remote server..." ) ); // then later... // update request status container.replaceChild( document.createTextNode( "Done." ), container.firstChild ); |
||
|
|
|
|
I have a simple code like that above and am trying to change the result True to false via Javascript using Prototype. What might I be doing wrong? Edit: Got it. I didn't call it. :D |
|||
|
|
|
|
Here's working example of your code
You'll notice that I added a little link that you have to click to actually make the change. I thought this might make it easier to try out for real. |
||
|
|
