Ajax

45+ Fresh Out of the oven jQuery Plugins

Image SlideShows and Galleries
1) Galleria -Is a javascript image gallery written in jQuery. It loads the images one by one from an unordered list and displays thumbnails when each image is loaded. It will create thumbnails for you if you choose so, scaled or unscaled, centered and cropped inside a fixed thumbnail box defined by [...]


37 Shocking jQuery Plugins

It’s really amazing to see what one can create using jQuery. Developers just don’t stop making incredibly interactive web applications every now and then. This post just demonstrates excellent examples of some of the best jQuery plugins out there.
jQuery Sliders
1) Slider Gallery- A similar effect used to showcase the products on the Apple web site. [...]


How to post a form by Json without page reloading?

Javascript:
function submitAddLink( )
{
print(’<img src=”{URL_IMAGES}loading.gif” />’, ‘processAddLink’);
var oForm = document.frmAddLink;
oXMLHttp = checkXMLHTTP();
var setRequest = typeof(oXMLHttp.setRequestHeader);
if ( oXMLHttp && setRequest!=”undefined” )
{
var myQuery = ’sAction=detail’;
if(oForm.elements.length > 0){
for(var iElement in oForm.elements){
myQuery = myQuery + ‘&’ + oForm.elements[iElement].name + ‘=’ + oForm.elements[iElement].value;
}
}
orderPost( oXMLHttp, “index.php”, myQuery, HTTPsubmitAddLink, true );
}
}
function HTTPsubmitAddLink()
{
if ( typeof(oXMLHttp)===’undefined’ )
return;
// Return status of XMLHttp object
if ( oXMLHttp.readyState==4 [...]