Javascript JQUERY AJAX: When Are These Implemented

Posted by Michael Moreno on Stack Overflow See other posts from Stack Overflow or by Michael Moreno
Published on 2010-04-28T17:36:27Z Indexed on 2010/04/28 17:47 UTC
Read the original article Hit count: 251

Filed under:
|
|
|
|

I'm learning javascript. Poked around this excellent site to gather intel. Keep coming across questions / answers about javascript, JQUERY, JQUERY with AJAX, javascript with JQUERY, AJAX alone. My conclusion: these are all individually powerful and useful. My confusion: how does one determine which/which combination to use ?

I've concluded that javascript is readily available on most browsers. For example, I can extend a simple HTML page with

<html>
<body>

<script type="text/javascript">
document.write("Hello World!");
</script>

</body>
</html>

However, within the scope of Python/DJANGO, many of these questions are JQUERY and AJAX related. At which point or under what development circumstances would I conclude that javascript alone isn't going to "cut it", and I need to implement JQUERY and/or AJAX and/or some other permutation ?

© Stack Overflow or respective owner

Related posts about python

Related posts about django