http://www.ajaxload.info/
Adding places to google places in unavailable country
Well, you cannot, but you can make a trick, add your local to google Map Marker, and thats all you have to do!
http://goo.gl/3Qeg7
Jquery Plugins i love..
Caroufredsel
Cuztomizable Jquery carousel, you should always use it, lots of options and RESPONSIVE!… Try it here.
Pajination
Really Flexible, easy to use and lots of customization options, go ahead and take a look:
http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/
NivoSlider
Definitely NIVO SLIDER is one of the best choices of jquery slider, and of course my favorite!, i want to encourage you to try it, it’s really flexible, easy to customize code and css styles, and it is available for WORDPRESS too!.. Amazing!
Jquery Flip!
A heavy but beatifull solution to make flip content.. Visit Here. If you would like something ligther you may want to use QuickFlip 2.
One thing you should never forget about jquery
Never ever forget how to ask if an object exist:
if($('#object').length){ ... }
//or
if($('#object').length > 0){ ... }
//or
if($('#object')[0]){ ... }
Use your prefer, and remember: jquery will always return an object( $(‘xxx’) ), even if it doesnt exist, so if you want to know if an object exist you must to do it correctly.
Fix ie 8 select
If you are reading at this post, it’s because you already know the problem,…. so the javascript (jquery) solution to avoid options has the same widht as the select is:
jQuery(document).ready(function($) {
$("xXxxXxXx select").hover(
function(){
$(this)
.data("origWidth", $(this).css("width"))
.css("width", "auto");
},function(){
$(this).css("width", $(this).data("origWidth"));
});
});
