2 days ago Jquery 1.4.3 is announced. You can check the release notes here.
Also i was using an older version of chm manual for Jquery, finally i found a newer one (i wasn’t searching for it, i was too lazy to search for a long time for manuals). Here you can find the latest Jquery Api CHM Manual.
When you are using Jquery ajax requests with Zend Framework, you can check the request object and act different if it’s an ajax request or not. What i need is, if the request is not an XmlHttpRequest i should forward client to main page.
Here is the snippet that you can use in your controller:
[code]
public function popupAction(){
if($this->_request->isXmlHttpRequest()): //is Ajax Request?
//Do the rest, assign variables to view, do more controls etc.
else:
//Just forward users to main page.
$this->_forward('index','index');
endif;
}
[/code]
Posted: October 18th, 2010
Categories:
Development
Tags:
ajax,
Development,
jquery,
zend
Comments:
No Comments.
There are some links provided by Irfan Uygur. Irfan is a brilliant web programmer with great collector skills. He collects and saves links, pdf’s, articles and anythink he likes on web. And he saves them on his hard drive with the program treePad with good descriptions. When i need something, before googling it, i ask him. This is why he gets angry usually but when i think overall, it’s a fair price for such great information
Here are great gallery links made with jquery (i asked İrfan about vertical carousel)
http://www.sitepoint.com/blogs/2009/09/14/seven-jquery-plugins-images/
jParallax – jParallax turns a selected element into a ‘window.’ Through this window you can see a number of absolutely positioned layers. The layers move in response to the mouse, giving a parallax effect. The parallax effect was utilized on the popular Silverback application website last year.
360 Virtual Tour – This is a really nice plugin that allows you to add a panoramic image to your site with additional interactivity. Users can pan around the image and also click on hotspots for a closer view. -
http://www.openstudio.fr/jQuery-virtual-tour.html?lang=en
Illuminated letters – This plugin lets you add a decorative drop cap to your text. The drop caps are images provided in a zip file with the plugin. I imagine it would be reasonably straightforward to replace the provided images with your own letter images if you wanted to use a different style. – http://www.openstudio.fr/Des-enluminures-avec-jQuery.html?lang=en
parallax – This is a really nice plugin that allows you to add a panoramic image to your site with additional interactivity.Users can pan around the image and also click on hotspots for a closer view. – http://webdev.stephband.info/parallax.html
jCrop lets users choose part of a large image and crop it to produce a second smaller image. This would be ideal for situations such as creating an avatar or thumbnail image for example. – http://deepliquid.com/content/Jcrop.html
Image Annotation lets you choose hotspots on an image where you can add tooltips or notes which display with a mouse rollover. You’ve probably seen this effect numerous times if you use Flickr.
imageannotation – http://code.google.com/p/jquery-image-annotate/
jCaption plugin lets you easily add a caption to an image. As simple as that. – http://www.newmediacampaigns.com/page/jcaption-a-jquery-plugin-for-simple-image-captions
jQuery Lightbox is a simple and elegant way to overlay image on the current page.http://leandrovieira.com/projects/jquery/lightbox/
Gallery View is a beautifully clean and versatile gallery. It contains thumbnails, a semi-transparent overlay for image descriptions and captions for the thumbnails. – http://plugins.jquery.com/project/galleryview
S3 Slider is a slideshow offering smooth transition of images with a semi-transparent area overlaid with the image description. – http://www.serie3.info/s3slider/demonstration.html
Galleriffic allows for two types of gallery setup, “simple” and “advanced”. The simple option uses text links to link to each image in the gallery while the advanced choice displays thumbnails on the left hand side. Other features include bookmark friendly URLs, image caption and descriptions and slideshow options. – http://www.twospy.com/galleriffic/#1
jQuery lightBox plugin http://leandrovieira.com/projects/jquery/lightbox
Posted: January 6th, 2010
Categories:
Hayat
Tags:
carousel,
gallery,
image,
irfan,
jquery,
web
Comments:
No Comments.