<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Young Dutch Design &#187; JavaScript</title>
	<atom:link href="http://youngdutchdesign.com/tag/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://youngdutchdesign.com</link>
	<description>Young Dutch Design is a new platform for young designers with frequently new added postings about productdesign, webdesign and other related subjects.</description>
	<lastBuildDate>Tue, 14 Jun 2011 20:25:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Create a dynamic object in JavaScript</title>
		<link>http://youngdutchdesign.com/create-a-dynamic-object-in-javascript</link>
		<comments>http://youngdutchdesign.com/create-a-dynamic-object-in-javascript#comments</comments>
		<pubDate>Tue, 14 Jun 2011 20:20:59 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Object]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=4148</guid>
		<description><![CDATA[I&#8217;m working on a new updated version of the cvLinkSelect class. Therefore I needed to create a dynamic object for the select boxes. Sometimes you&#8217;re stuck with your code and you need to know which words you need to use in your search engine. Finally I found this website! var temp = new Object(); var [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a new updated version of the <a title="Mootools 1.2 cvLinkSelect class" href="http://youngdutchdesign.com/mootools-1-2-cvlinkselect-class">cvLinkSelect</a> class. Therefore I needed to create a dynamic object for the select boxes. Sometimes you&#8217;re stuck with your code and you need to know which words you need to use in your search engine. Finally I found <a href="http://www.jguru.com/faq/view.jsp?EID=1358292" target="_blank">this website</a>!</p>
<pre class="javascript">var temp = new Object();
var name = el.getProperty('name');
var value = el.getProperty('value');

eval("temp."+name+"='"+value+"'");

/* Add the object to another object */
merged = Object.merge(merged,temp);</pre>
<p>I hope this is helpful to you!</p>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/create-a-dynamic-object-in-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jsFiddle</title>
		<link>http://youngdutchdesign.com/jsfiddle</link>
		<comments>http://youngdutchdesign.com/jsfiddle#comments</comments>
		<pubDate>Fri, 27 Aug 2010 21:09:14 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=3581</guid>
		<description><![CDATA[Today I&#8217;ve finally tested jsFiddle. I&#8217;m aware of the existence quite some time now but I never took the time to check  it out. It&#8217;s a very nice shell editor with html, css and JavaScript. You don&#8217;t have to go from your code editor to your browser any more, just click run Just look at [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-3584" title="Screen shot 2010-08-27 at 21.44.41" src="http://youngdutchdesign.com/wp-content/uploads/2010/08/Screen-shot-2010-08-27-at-21.44.41--300x224.png" alt="" width="300" height="224" />Today I&#8217;ve finally tested jsFiddle. I&#8217;m aware of the existence quite some time now but I never took the time to check  it out. It&#8217;s a very nice shell editor with html, css and JavaScript. You don&#8217;t have to go from your code editor to your browser any more, just click run Just look at the examples or create your own snippet or project to develop your JavaScript.</p>
<p>I&#8217;ve heard that the beta version is coming soon and there will be lot&#8217;s of new functions. For example a  user login with lot&#8217;s of features.</p>
<p>Go and visit <a href="http://jsfiddle.net/" target="_blank">jsFiddle.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/jsfiddle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transitions</title>
		<link>http://youngdutchdesign.com/transitions</link>
		<comments>http://youngdutchdesign.com/transitions#comments</comments>
		<pubDate>Tue, 28 Apr 2009 00:39:32 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=1200</guid>
		<description><![CDATA[A lot of javascript frameworks have several animations to move or style elements. I thought it was very handy to have all this kind of animations in one list so you can pick them wisely. View Mootools example The 30 transition types above break down into 10 sets: Quad Cubic Quart Quint Expo Circ Sine [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1242" title="transitions" src="http://youngdutchdesign.com/wp-content/uploads/2009/04/transitions.jpg" alt="transitions" width="149" height="200" /></p>
<p>A lot of javascript frameworks have several animations to move or style elements. I thought it was very handy to have all this kind of animations in one list so you can pick them wisely.</p>
<p><a class="example_but demo" href="http://youngdutchdesign.com/examples/transitions.php">View Mootools example</a></p>
<p>The 30 transition types above break down into 10 sets:</p>
<p><span id="more-1200"></span>
<ul>
<li>Quad</li>
<li>Cubic</li>
<li>Quart</li>
<li>Quint</li>
<li>Expo</li>
<li>Circ</li>
<li>Sine</li>
<li>Back</li>
<li>Bounce</li>
<li>Elastic</li>
</ul>
<p>Each set has three options:</p>
<ul>
<li>Ease In</li>
<li>Ease Out</li>
<li>Ease In Out</li>
</ul>
<h2>Usage</h2>
<p>Load this javascript when the DOM is ready.</p>
<pre class="javascript">var enterFunction = function() {
	this.start('width', '600px');
}

var leaveFunction = function() {
	this.start('width', '300px');
}

bounceInOut= new Fx.Tween(quadInOut, {
	link: 'cancel',
	transition: Fx.Transitions.Quad.easeInOut,
	onStart: function(ydd){
		ydd.highlight('#F47920');
	},
	onComplete: function(ydd){
		ydd.highlight('#F5A145');
	}
});

$('bounceinout').addEvents({
	'mouseenter': enterFunction.bind(bounceInOut),
	'mouseleave': leaveFunction.bind(bounceInOut)
});</pre>
<p><a class="example_but demo" href="http://youngdutchdesign.com/examples/transitions.php">View examples</a></p>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/transitions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>swfIR: Ajust your images on the fly</title>
		<link>http://youngdutchdesign.com/swfir-adjust-your-images-on-the-fly</link>
		<comments>http://youngdutchdesign.com/swfir-adjust-your-images-on-the-fly#comments</comments>
		<pubDate>Mon, 27 Apr 2009 00:37:01 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=1202</guid>
		<description><![CDATA[Today I&#8217;ve found something on the internet: swfIR. This flash based widget allows you to rotate images, adds rounded corners (even to Internet Explorer), borders and shadow to specified elements. swfIR (swf Image Replacement) is here to solve some of the design limitations of the standard HTML image and its widely-accepted associated CSS values, while [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1216" title="screenshot24" src="http://youngdutchdesign.com/wp-content/uploads/2009/04/screenshot24.jpeg" alt="screenshot24" width="118" height="118" />Today I&#8217;ve found something on the internet: swfIR. This flash based widget allows you to rotate images, adds rounded corners (even to Internet Explorer), borders and shadow to specified elements.</p>
<p style="padding-left: 30px;"><em class="brandname">swfIR (swf Image Replacement)</em> is here to solve some of the design limitations of the standard <abbr title="Hypertext Markup Language">HTML</abbr> image and its widely-accepted associated <abbr title="Cascading Style Sheets">CSS</abbr> values, while still supporting standards-based design concepts. Using the dark arts of JavaScript and Flash, swfIR gives you the ability to apply an assortment of visual effects to any or all images on your website. Through progressive enhancement, it looks through your page and can easily add some new flavor to standard image styling.</p>
<p style="padding-left: 30px;">Go to <a href="http://www.swfir.com/" target="_blank">the swfIR website</a></p>
<p>I&#8217;ve created a sample page to see it in action! It&#8217;s a pity that swfIR doesn&#8217;t work in combination with Mootools or Prototype&#8230;</p>
<p><a class="example_but demo" href="http://youngdutchdesign.com/examples/swfIR.php">View example</a></p>
<p><span id="more-1202"></span>Add the javascript after the elements that has to be modified and before the tag. Specify the selector by id or class.</p>
<pre class="html"><img id="rotate" style="float: right;" src="images/9.jpg" alt="" /></pre>
<h2>Rotate image</h2>
<pre class="javascript">window.onload = function(){
	rotate = new swfir();
	rotate.specify('src', 'js/swfir.swf');
	rotate.specify('rotate', '-5');
	rotate.swap("#rotate");
}</pre>
<h2>Rounded corners</h2>
<pre class="javascript">window.onload = function(){
	round = new swfir();
	round.specify('src', 'js/swfir.swf');
	round.specify('border-color', 'ffffff');
	round.specify('border-radius', '10');
	round.swap("#round");
}</pre>
<h2>Border</h2>
<pre class="javascript">window.onload = function(){
	border = new swfir();
	border.specify('src', 'js/swfir.swf');
	border.specify('border-color', '333333');
	border.specify('border-width', '5');
	border.swap("#border");
}</pre>
<h2>Shadow</h2>
<pre class="javascript">window.onload = function(){
	shadow = new swfir();
	shadow.specify('src', 'js/swfir.swf');
	shadow.specify('shadow-blur', '5');
	shadow.specify('shadow-strength', '.3');
	shadow.swap("#shadow");
}</pre>
<h2>All ajustments</h2>
<pre class="javascript">window.onload = function(){
	all = new swfir();
	all.specify('src', 'js/swfir.swf');
	all.specify('src', 'js/swfir.swf');
	all.specify('rotate', '-5');
	all.specify('border-color', 'ffffff');
	all.specify('border-radius', '10');
	all.specify('border-color', '333333');
	all.specify('border-width', '5');
	all.specify('shadow-blur', '15');
	all.specify('shadow-strength', '.3');
	all.swap("#all");
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/swfir-adjust-your-images-on-the-fly/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mootools 1.2 cvStepSlider class</title>
		<link>http://youngdutchdesign.com/mootools-12-cvstepslider-class</link>
		<comments>http://youngdutchdesign.com/mootools-12-cvstepslider-class#comments</comments>
		<pubDate>Sun, 15 Mar 2009 15:30:51 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[XML / XHTML]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=714</guid>
		<description><![CDATA[This slider slides trough your image. Choose a vertical or horizontal slider. Load a item form a anchor url and save the visited items in a cookie! See the demo Download file The css .index_button { width: 30px; height: 126px; float: left; cursor: pointer; } .prev { background: #FFF url(images/index_prev.jpg) center right no-repeat; margin-right: 10px; [...]]]></description>
			<content:encoded><![CDATA[<p>This slider slides trough your image. Choose a vertical or horizontal slider. Load a item form a anchor url and save the visited items in a cookie!</p>
<p><img class="alignnone size-full wp-image-720" title="stepslider" src="http://youngdutchdesign.com/wp-content/uploads/2009/03/stepslider.jpg" alt="stepslider" width="600" height="77" /></p>
<p><a class="example_but demo" href="http://youngdutchdesign.com/examples/cvstepslider.php">See the demo</a> <a class="example_but download" href="http://youngdutchdesign.com/examples/js/cvStepSlider.js">Download file</a></p>
<p><span id="more-714"></span></p>
<h2>The css</h2>
<pre class="css">
.index_button {
	width: 30px;
	height: 126px;
	float: left;
	cursor: pointer;
	}

.prev {
	background: #FFF url(images/index_prev.jpg) center right no-repeat;
	margin-right: 10px;
	}

.prev_hover {
	background: #FFF url(images/index_prev_h.jpg) center right no-repeat;
	}

.next {
	background: #FFF url(images/index_next.jpg) center left no-repeat;
	margin-left: 10px;
	}

.next_hover {
	background: #FFF url(images/index_next_h.jpg) center left no-repeat;
	}

#portfolio_index, #portfolio_index2 {
	padding-top: 10px;
	width: 700px;
	height: 115px;
	float: left;
	overflow: hidden;
	}

#portfolio_index3 {
	width: 140px;
	height: 105px;
	float: left;
	overflow: hidden;
	}

#portfolio_index ul li, #portfolio_index2 ul li, #portfolio_index3 ul li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	float: left;
	cursor: pointer;
	}

.item_hover {
	border: 1px #CCC solid;
	}

.loading {
	background:url(images/ajax-loader.gif) center center no-repeat;
	}

.active {
	border: 1px #F8991D solid;
	}
</pre>
<h2>The html</h2>
<pre class="html">
<div id="prev" class="index_button prev"></div>
<div id="portfolio_index" class="loading">
<ul id="items">
<li><a href="#Portretten"><img src="images/portretten.jpg" alt="Portretten" /></a></li>
<li><a href="#Vervandekade"><img src="images/vvk1.jpg" alt="Vervandekade" /></a></li>
<li><a href="#Young Dutch Design"><img src="images/ydd.jpg" alt="Young Dutch Design" /></a></li>
<li><a href="#Chronotherm Vision"><img src="images/ctv.jpg" alt="Chronotherm Vision" /></a></li>
<li><a href="#Muscle Tower"><img src="images/mt.jpg" alt="Muscle Tower" /></a></li>
<li><a href="#Easy Maps"><img src="images/em.jpg" alt="Easy Maps" /></a></li>
<li><a href="#Handtekenen"><img src="images/tekenen.jpg" alt="Handtekenen" /></a></li>
<li><a href="#Blox"><img src="images/blox.jpg" alt="Blox" /></a></li>
<li><a href="#PhilliShave"><img src="images/shaver.jpg" alt="Shaver" /></a></li>
<li><a href="#Velominck"><img src="images/velominck.jpg" alt="Velominck" /></a></li>
<li><a href="#Stichting Signaal Beheer"><img src="images/bestuur.jpg" alt="Bestuur" /></a></li>
<li><a href="#Jetzt Gehts Loods"><img src="images/jgl.jpg" alt="Jetzt Gehts Loods" /></a></li>
<li><a href="#Vliegende Hollander"><img src="images/vh.jpg" alt="Flying Dutchman" /></a></li>
</ul>
</div>
<div id="next" class="index_button next"></div>
</pre>
<h2>The usage</h2>
<p>See the example for the usage of the visited items using a Cookie.</p>
<pre class="javascript">
window.addEvent('domready', function() {
	var slider = new cvStepSlider({
		wrapper: 'portfolio_index',
		list: 'items',
		items: '#portfolio_index ul li img',
		itemWidth: 140,
		itemHeight: 105,
		startSlide: 1,
		type: 'horizontal',
		step: 'item',
		nextbutton: 'next',
		prevbutton: 'prev',
		log: true,
		result: 'res',
		preloadImages: ['images/index_next_h.jpg','images/index_next.jpg','images/index_prev_h.jpg','images/index_prev.jpg']
	});
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/mootools-12-cvstepslider-class/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mootools 1.2 cvSlideShow class</title>
		<link>http://youngdutchdesign.com/mootools-12-cvslideshow-class</link>
		<comments>http://youngdutchdesign.com/mootools-12-cvslideshow-class#comments</comments>
		<pubDate>Tue, 10 Mar 2009 08:09:16 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[XML / XHTML]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=684</guid>
		<description><![CDATA[This Mootools class realises a basic slideshow with navigation buttons. Just the images, no extra data will be shown. Make a list of images just like in the demo or see the html source code below. See the demo Download file The css Note the properties for the &#8216;#image img&#8217;. The &#8216;position: absolute&#8217; and the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-687" title="cvslideshow" src="http://youngdutchdesign.com/wp-content/uploads/2009/03/cvslideshow.jpg" alt="cvslideshow" width="250" height="210" />This Mootools class realises a basic slideshow with navigation buttons. Just the images, no extra data will be shown.</p>
<p>Make a list of images just like in the demo or see the html source code below.</p>
<p><a class="example_but demo" href="http://youngdutchdesign.com/examples/cvslideshow.php">See the demo</a> <a class="example_but download" href="http://youngdutchdesign.com/examples/js/cvSlideShow.js">Download file</a></p>
<p><span id="more-684"></span></p>
<h2>The css</h2>
<p>Note the properties for the &#8216;#image img&#8217;. The &#8216;position: absolute&#8217; and the &#8216;opacity: 0&#8242; are necessary for this class.</p>
<pre class="css">#image {
	padding: 52px 20px 10px 20px;
	width: 580px;
	height: 420px;
	background: url(image.png) top right no-repeat;
	}

#image img {
	cursor: pointer;
	width: 540px;
	height: 405px;
	position: absolute;
	opacity: 0;
	}

#nav {
	margin: 0px auto;
	width: 400px;
	}

.nav_button {
	cursor: pointer;
	list-style-type: none;
	float: right;
	margin-left: 10px;
	width: 40px;
	height: 40px;
	}

.non_active {
	cursor: default;
	opacity: 0;
	}

.nav_button:hover {
	background: url(nav.jpg);
	}

#stat {
	list-style-type: none;
	padding-top: 18px;
	font: bold 12px Verdana, Geneva, sans-serif;
	color: #666;
	}</pre>
<h2>The html</h2>
<p>The list item #stat is for the image count.</p>
<pre class="html">
<div id="image">
    <img class="image" src="images/portfolio/hulk.jpg" alt="Hulk" />
    <img class="image" src="images/portfolio/philly.jpg" alt="Phillyshave" />
    <img class="image" src="images/portfolio/apd.jpg" alt="Automated Pill Dispensor" /></div>
<div id="nav">
<ul>
<li id="nav_next" class="nav_button"><img src="images/nav_next.png" alt="Next Image" /></li>
<li id="nav_prev" class="nav_button"><img src="images/nav_prev.png" alt="Previous Image" /></li>
<li id="nav_play" class="nav_button"><img src="images/nav_pauze.png" alt="Pauze" /></li>
</ul>
</div>
</pre>
<h2>The usage</h2>
<p>Ajust these parameters to make a slideshow to your own preferences.</p>
<pre class="javascript">window.addEvent('domready', function() {

	var slideshow = new cvSlideShow({
		images: '.image',
		buttons: '.nav_button',
		autoplay: true,				//bool
		nextbutton: 'nav_next',
		prevbutton: 'nav_prev',
		pauzebutton: 'nav_play',
		statbut: 'stat',
		showtime: 2000,				//milliseconds
		duration: 500				//milliseconds
	});
});</pre>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/mootools-12-cvslideshow-class/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mootools 1.2 cvIndex class</title>
		<link>http://youngdutchdesign.com/mootools-12-cvindex-class</link>
		<comments>http://youngdutchdesign.com/mootools-12-cvindex-class#comments</comments>
		<pubDate>Mon, 09 Mar 2009 09:00:18 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[XML / XHTML]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=783</guid>
		<description><![CDATA[In case I write long articles I always make a nice index by hand so the user knows what to expect reading the article. It&#8217;s a lot of work to do this by hand so therefore I&#8217;ve written a Mootools class witch automatically creates an index of all the h2 elements in the content. View [...]]]></description>
			<content:encoded><![CDATA[<p>In case I write long articles I always make a nice index by hand so the user knows what to expect reading the article. It&#8217;s a lot of work to do this by hand so therefore I&#8217;ve written a Mootools class witch automatically creates an index of all the h2 elements in the content.</p>
<p><a class="example_but demo" href="http://youngdutchdesign.com/examples/cvindex.php">View example</a> <a class="example_but download" href="http://youngdutchdesign.com/examples/js/cvIndex.js">Download file</a></p>
<p><span id="more-783"></span></p>
<p><!--index--></p>
<h2>The html</h2>
<p>Short but powerfull!</p>
<h2>The usage</h2>
<pre class="javascript">window.addEvent('domready', function() {
	var index = new cvIndex({
		index: 'indexid',
		url: 'pagina url hier'
	});
});</pre>
<p><strong>Update 11-3-2009</strong><br />
To make the index even more usefull I&#8217;ve written a php script to create the index. This is a faster method than doing it by javascript. <a href="http://youngdutchdesign.com/create-an-index-using-php">Check it out</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/mootools-12-cvindex-class/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mootools 1.2 cvMultipleGooglemaps class</title>
		<link>http://youngdutchdesign.com/mootools-12-cvmultiplegooglemaps-class</link>
		<comments>http://youngdutchdesign.com/mootools-12-cvmultiplegooglemaps-class#comments</comments>
		<pubDate>Wed, 04 Mar 2009 08:07:29 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[GoogleMaps]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[XML / XHTML]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=624</guid>
		<description><![CDATA[For a new application I&#8217;m writing for my new blog I was trying to create several Google Maps on one page. I haven&#8217;t found any solution for this issue on the Internet so now I post this Mootools class for the people who found this very interesting. You can add several functions to the class [...]]]></description>
			<content:encoded><![CDATA[<p>For a new application I&#8217;m writing for my new blog I was trying to create several Google Maps on one page. I haven&#8217;t found any solution for this issue on the Internet so now I post this Mootools class for the people who found this very interesting. You can add several functions to the class to make them even more useful.</p>
<p>This class is works with Firefox, Safari, Chrome, Opera but <strong>not yet</strong> with Internet Explorer&#8230;<br />
<img class="alignnone size-full wp-image-673" title="multiple_gm" src="http://youngdutchdesign.com/wp-content/uploads/2009/03/multiple_gm.jpg" alt="multiple_gm" width="400" height="189" /></p>
<p><a class="example_but demo" href="http://youngdutchdesign.com/examples/cvmultiplegooglemaps.php">See the demo</a> <a class="example_but download" href="http://youngdutchdesign.com/examples/js/cvMultipleGooglemaps.js">Download file</a></p>
<p><span id="more-624"></span></p>
<h2>The html</h2>
<p>The indicator for the maps is the id tag in the div element. This works just as usual. Every id has to be unique.</p>
<pre class="html"></pre>
<h2>The css</h2>
<p>There is no css required. I use this css to align them nicely. You also can add an animated loading gif. In this case you should give the class also an height and a width.</p>
<pre class="css">.googlemaps {	float: left;	margin: 0px 10px 10px 0px;	border: 1px #CCC solid;	}</pre>
<h2>The usage</h2>
<p>Inplement the folowing rule into your head. Make sure you put these lines between the javascript tags and you have a valid key for your Google Maps usage.</p>
<pre class="javascript">window.addEvent('domready', function() {	var maps = new GoogleMaps({		map_prev_width: 300,		map_prev_height: 200		//change this options to your own preference	});});</pre>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/mootools-12-cvmultiplegooglemaps-class/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mootools 1.2 basics</title>
		<link>http://youngdutchdesign.com/mootools-12-basics</link>
		<comments>http://youngdutchdesign.com/mootools-12-basics#comments</comments>
		<pubDate>Mon, 16 Feb 2009 20:45:34 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=767</guid>
		<description><![CDATA[Mootools is a javascript framework that adds more functionality to your website on a easy way. The Mootools core team says: MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer. It allows you to write powerful, flexible, and cross-browser code with its elegant, well documented, and coherent API. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mootools.net" target="_blank"><img class="alignright size-full wp-image-829" title="logo-mootools" src="http://youngdutchdesign.com/wp-content/uploads/2009/02/logo-mootools.gif" alt="logo-mootools" width="180" height="60" />Mootools </a>is a javascript framework that adds more functionality to your website on a easy way. The Mootools core team says:</p>
<blockquote><p>MooTools is a <em>compact</em>, <em>modular</em>, <em>Object-Oriented</em> JavaScript framework designed for the intermediate to advanced JavaScript developer. It allows you to write <em>powerful</em>, <em>flexible</em>, and <em>cross-browser</em> code with its elegant, well documented, and <em>coherent API</em>.</p></blockquote>
<p><span id="more-767"></span><br />
The script language &#8216;javascript&#8217; is browser based. This means that the scripts are executed by the program that you&#8217;re using for surfing on the internet. This program is called &#8216;the browser&#8217;. Some browsers handles the scripts differently. So you&#8217;ve got your script running in your favourite browser but when your friends look at the website some errors occures and the website isn&#8217;t shown as it should be. When you write plain, &#8216;old fashion&#8217; javascript you can have this much trouble. When you use a javascript framework like Mootools this is more easy to debug and avoid this kind of problems.<br />
<!--index--></p>
<h2>Get started with Mootools</h2>
<p>Go to <a href="http://mootools.net/download" target="_blank">mootools.net/download</a> to download the mootools core.</p>
<h2>Select elements</h2>
<h2>Add events</h2>
<h2>Transitions</h2>
<h2>AJAX</h2>
<h2>Links</h2>
<ul>
<li>Mootools documentation</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/mootools-12-basics/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
