[jQuery] Re: Function Running in the Background???

2008-04-23 Thread alfredwesterveld
1. First get right CSS-selector: See http://docs.jquery.com/Selectors/class#class to get all elements with certain class. $(".data"); to get CSS-selector for all elements with class "data" 2. Second event handling: See http://docs.jquery.com/Events/click#fn for handling click events. $(".data").

[jQuery] Re: Reading in the contents of a file.

2008-02-12 Thread alfredwesterveld
This can't be done with javascript (client-side) because javascript can't read/write to files. You can do this server-side with for example PHP. On Feb 11, 11:41 pm, tstrokes <[EMAIL PROTECTED]> wrote: > Is there a way to get the contents of a file without actually > uploading the it? > > Example