A web developer's blog. PHP, MySQL, CakePHP, Zend Framework, Wordpress, Code Igniter, Django, Python, CSS, Javascript, jQuery, Knockout.js, and other web development topics.

Tag Archives: AJAX

Django and jQuery AJAX

This is probably my first post for Django. I have only been using it for a few weeks and I am already falling in love with it. Here is how to do an AJAX “save” using jQuery and Django. My … Continue reading

Posted in General | Tagged , , , | Leave a comment

How to do AJAX in jQuery with JSON callback in Zend Framework

Here is how to do it in Zend Framework. Let’s start with the form: <textarea id="mytext"> </textarea> <input type="button" id="mybutton" value="go" />   < script language="Javascript"> //jQuery stuff $(document).ready(function() { $("#mybutton").click(function() { $.post("< ?=$this->baseUrl?>/path/to/my/coolaction",{ mytext: $(’#mytext’).val() }, function(data){ //alert("Data Loaded: … Continue reading

Posted in General | Tagged , , | 3 Comments

Simple PHP + AJAX + XML Chat Tutorial

A short but complete tutorial on how to write a Chat Application using PHP, AJAX and XML. Developers talk a lot about community when the term Web 2.0 comes up. And whether you think it’s hype or not, the idea … Continue reading

Posted in General | Tagged , , , | Leave a comment

jQuery on Ruby on Rails

I found this: jRails is a drop-in jQuery replacement for Prototype/script.aculo.us on Rails. Using jRails, you can get all of the same default Rails helpers for javascript functionality using the lighter jQuery library. jRails provides drop-in functionality for these existing … Continue reading

Posted in General | Tagged , , , | Leave a comment

AJAX and PHP

Here is an excerpt from a book – Beginning Ajax with PHP: From Novice to Professional. While the concept of Ajax contains a handy set of functionality for creating actions on the fly, if you are not making use of … Continue reading

Posted in General | Tagged , , | 2 Comments

Free AJAX Training – 18-week Online Course

Java Passion provides an 18-week AJAX online course for free. I’m not sure if the guy responsible for this was the same guy I saw a couple of years ago in Waterfront Cebu – when I was attending a seminar/conference. … Continue reading

Posted in General | Tagged , , , , | Leave a comment

jQuery AJAX in Zend Framework

I have posted a sample code on my wiki on how to submit variables to an action controller. The sample code contains a niffty jQuery plugin – the jQuery Calendar. Click here for the tutorial. Update (07-08-2008): For those who … Continue reading

Posted in General | Tagged , , | 6 Comments

PHP + AJAX Security Issues

I have been using PHP with jQuery so this one caught my attention. It’s easy to get caught up in the dynamic potential of Ajax. But with innumerable possibilities also comes increased risk. If security isn’t a major concern, it … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

Open source AJAX toolkits

I just found this on Slashdot. A very interesting read since I am planning to dive into AJAX as soon as I get my hands free from the projects I have right now. Also, hopefully, I will also be working … Continue reading

Posted in Uncategorized | Tagged | 1 Comment