in reply to How do I mix up Perl and jQuery (for beginners)
Here's another simple example of jQuery and Perl (as well as AJAX) that I just created as a reference.
jQuery is nothing more than a Javascript library (albeit a very powerful one!), so you will need to learn Javascript in conjunction with it for doing client-side programming.
AJAX is a technique for communicating asynchronously from the Client to the Server, which can be done in plain Javascript but is made extremely more easy by jQuery.
I have intentionally omitted JSON (a mechanism for handling data based on Javascript syntax), but at some point you may want to learn that as well, especially when passing more complicated data between the Client and Server.
You have a lot of learning ahead of you -- I wish you good luck and great fun!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How do I mix up Perl and jQuery (for beginners)
by eyekona (Acolyte) on Aug 22, 2013 at 08:34 UTC |