diff --git a/readme.md b/readme.md index 9608153..23a1f9e 100644 --- a/readme.md +++ b/readme.md @@ -1,3 +1,16 @@ ## Django and AJAX Form Submissions - say 'goodbye' to the page refresh +AJAX is a developer's dream, because you can: -- check out the blog post: [https://realpython.com/blog/python/django-and-ajax-form-submissions/](https://realpython.com/blog/python/django-and-ajax-form-submissions/) \ No newline at end of file +Update a web page without reloading the page +Request data from a server - after the page has loaded +Receive data from a server - after the page has loaded +Send data to a server - in the background + +AJAX +AJAX is not a programming language. + +AJAX is a technique for accessing web servers from a web page. + +AJAX stands for Asynchronous JavaScript And XML. + +- check out the blog post: [https://realpython.com/blog/python/django-and-ajax-form-submissions/](https://realpython.com/blog/python/django-and-ajax-form-submissions/)