|
jQueryServer
jQueryServer is a jQuery plugin giving unobstrusive, client-side bindings to server-side implementation of jQuery. Example scenario
Example code$.server({url: 'http://somesite.com'})
.find('.my-class')
.client(function(response){
$('.destination').html(response);
});Since version 0.5.1 (this is not phpQuery release version number) there is a support for config file which authorizes Ajax hosts and referers. |
Sign in to add a comment