Google Maps – Center and fit map to a group of markers
Today I'll explain how you can center and auto zoom to the correct value your map to fit a group of markers.
Suppose that we have our map called myMap and a group of markers called markers (^.^')
jQuery UI 1.8 is out !
The jQuery UI team announced the release of jQuery UI 1.8, this release brings 5 new plug-ins, 1 new effect, and hundreds of bug fixes and improvements.
For a complete list of all the changes between 1.7.2 and jQuery UI jQuery UI 1.8, see the Changelog 1.8.
The developers have worked very hard to make jQuery UI lighter and more modular kernel more flexible and extensible. It is now even easier to create your own widgets or extend those of jQuery UI, if you use the jQuery UI widget factory, the jQuery UI CSS Framework, or both.
The code, themes, demos and documentation are now online jqueryui.com the jQuery UI Builder Download, ThemeRoller, and Google AJAX Libraries API.
Download jQuery UI 1.8 Starter Pack
Download jQuery UI 1.8 Themes Pack
Visit jQuery UI 1.8 Download Builder
Microsoft will support jQuery JS library
Scott Guthrie, vice president of platform. NET at Microsoft, announced at the MIX10 that Microsoft would actively contribute to the development of the jQuery JavaScript library.
Meanwhile, Redmond, Microsoft will also work to improve interoperability between ASP.NET and the same library for developers. NET can better incorporate its features.
Finally, Microsoft is committed to the promotion of the jQuery JavaScript library in the distribution with development products such as popular Microsoft Visual Studio 2010 and ASP.NET MVC 2 (which comes out officially).
To "mark the spot," and as a first step, Microsoft has decided to donate a templating engine for the team in charge of the library.
jQuery – Element exists ?
Here's a very small snippet about how to know if a Dom element is on the document with jQuery
-
var myElement = $('#myElement');
-
if (myElement.size() == 0) {
-
// Element doesn't exists
-
} else {
-
// Element exists
-
}
