write without reloading the page

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

write without reloading the page

will
Imagine having a button

    [ write something ]

Click it will just write something on the page, but the page doesn't need to reload.

Is that possible?

Sample code will be appreciated :)
Reply | Threaded
Open this post in threaded view
|

Re: write without reloading the page

fschmidt
Administrator
This is javascript.  There are 2 levels here.  Some things need the server and some don't.  Start by trying things without the server.  A practical example:

http://www.luan.ws/fschmidt/stopwatch.html

This is a pure HTML file.  You can view source or download it.  Note that I use the "onclick" attribute.  Modern programmers hate this (because it is readable) and never use it, but I always use it.  I think it would be worthwhile for you to study my stopwatch example to help learn javascript.
Reply | Threaded
Open this post in threaded view
|

Re: write without reloading the page

will
I tried. Can you take a look at http://www.airesumebuilder.com/ and see if I'm doing the right thing?
Reply | Threaded
Open this post in threaded view
|

Re: write without reloading the page

fschmidt
Administrator
See /fschmidt/ai.html in Dropbox.

Please ask future questions in http://support.super-resume.com/ .
Reply | Threaded
Open this post in threaded view
|

Re: write without reloading the page

will
Cool!

Many thanks!