Learn how to make AJAX requests in concrete5 5.7 Some time ago now, I wrote this article, AJAX driven applications in concrete5. You may have read it - it seems to be one of the more popular articles on c5hub. But it's irreleva… http://c5hub.com/learning/ajax-57-style/
Applications are better when they employ AJAX. concrete5 applications are no exception. What is AJAX, and, how do you implement in concrete5? $(document).ready(function(){ $('#animal').on('change', function(e){ var animal = $(this).val(); $.ajax({ url: "?animal=" + escape(animal), succe… http://c5hub.com/learning/ajax-driven-applications-concrete5/