Hello!
I just started using jquery and am blown away.
I'm trying to build a simple task manager using jquery, with three
simple pieces of functionality:
1. List tasks
2. Edit task
3. Add task
I got a rudimentary version of 1. working, with this code:
<code>
$.getJSON("/get_tasks", function(data){
$.each(data.results, function(i,item){
$('#tasks').append($('<li>').html(item.name));
});
</code>
That's nice. Super simple.
However, I wonder, as more features have to be added (for instance,
adding "edit task" functionality), this will quickly turn into
Spagetthi code.
So my question is:
What are the preferred ways to build complete Rich Internet
Applications in jQuery?
Sincerely,
Herb Asher