<?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/"
	xmlns:georss="http://www.georss.org/georss">

<channel>
	<title>www.netsi.dk &#187; jquery</title>
	<atom:link href="http://www.netsi.dk/wordpress/index.php" rel="self" type="application/rss+xml" />
	<link>http://www.netsi.dk/wordpress</link>
	<description>&#34;The internet is just a layer on the real world&#34; (don&#039;t forget that!)</description>
	<lastBuildDate>Thu, 09 Feb 2012 08:52:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<atom:link rel="next" href="http://www.netsi.dk/wordpress/index.php?page=2" />

		<item>
		<title>jQuery trigger() will not always fire naturally-occurring event</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/12/03/jquery-trigger-will-not-always-fire-naturally-occurring-event/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/12/03/jquery-trigger-will-not-always-fire-naturally-occurring-event/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 21:00:07 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[trigger(); click(); soloution]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/12/03/jquery-trigger-will-not-always-fire-naturally-occurring-event/</guid>
		<description><![CDATA[If you want to trigger (fire) an event on say a link with id=test from jQuery you can use the jQuery(‘#test’).trigger('click') which will simulate that a click event has occured and will execute any jQuery attached events. This is fine, but what if you have not assigned an jQuery event handler? You can simply call [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to trigger (fire) an event on say a link with id=test from <a href="http://www.netsi.dk/wordpress/index.php/tag/jquery/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jquery">jQuery</a> you can use the</p>
<blockquote><p><code>jQuery(‘#test’).trigger('click')</code></p>
</blockquote>
<p>which will simulate that a click event has occured and will execute any <strong>jQuery</strong> attached events. This is fine, but what if you have not assigned an jQuery event handler? You can simply call the native click() method on the element like this:</p>
<blockquote><p><code>jQuery('#test').each(function() {</code>       <br /><code>&#160; this.click();</code>       <br /><code>})</code></p>
</blockquote>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F12%2F03%2Fjquery-trigger-will-not-always-fire-naturally-occurring-event%2F&amp;title=jQuery%20trigger%28%29%20will%20not%20always%20fire%20naturally-occurring%20event" id="wpa2a_2"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/12/03/jquery-trigger-will-not-always-fire-naturally-occurring-event/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Function: loadscripts(aScripts, callWhenFinished) &#8211; Loading scripts syncron</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/10/03/function-loadscriptsascripts-callwhenfinished-loading-scripts-syncron/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/10/03/function-loadscriptsascripts-callwhenfinished-loading-scripts-syncron/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 09:54:08 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[loadscripts; xml comments;]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/10/03/function-loadscriptsascripts-callwhenfinished-loading-scripts-syncron/</guid>
		<description><![CDATA[Sometimes you need to load some javascripts in a syncron way and then when they have loaded do something. This is exactly what I try to address with this function. It requires jQuery. It will take an array of URLs to the scripts (aScripts) you want to load-and-execute. After it has finished with that it [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you need to load some javascripts in a syncron way and then when they have loaded do something. This is exactly what I try to address with this function. It requires <a href="http://www.netsi.dk/wordpress/index.php/tag/jquery/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jquery">jQuery</a>. It will take an array of URLs to the scripts (aScripts) you want to load-and-execute. After it has finished with that it will call an optional function “callWhenFinished”.</p>
<p>The code has <a href="http://www.netsi.dk/wordpress/index.php/tag/xml-documentation/">XML comments</a> which works with Microsoft <a href="http://www.netsi.dk/wordpress/index.php/tag/visual-studio-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Visual Studio 2010">Visual Studio 2010</a>.</p>
<pre>function loadScripts(aScripts, callWhenFinished) {  ///
<summary>Requires jQuery. Will load the scripts specified in the Array aScripts one after the      other (syncron). After that has been done it will optional       call the callWhenFinishedFunction  ///
<param type="Array" name="aScripts" />An array of script URLs which will be loaded an executed using jQuery.getScript  ///
<param type="function" name="callWhenFinished" />After all scripts has been loaded and executed this function will be called  jQuery.getScript( aScripts[0], function(data, textStatus) {    aScripts = aScripts.splice(1,2);    if (aScripts.length&gt;0) {      loadScripts(aScripts, callWhenFinished)    } else {      if (typeof callWhenFinished!='undefined') {        callWhenFinished.call(this)      }    };  });}</summary>
</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F10%2F03%2Ffunction-loadscriptsascripts-callwhenfinished-loading-scripts-syncron%2F&amp;title=Function%3A%20loadscripts%28aScripts%2C%20callWhenFinished%29%20%26%238211%3B%20Loading%20scripts%20syncron" id="wpa2a_4"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/10/03/function-loadscriptsascripts-callwhenfinished-loading-scripts-syncron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Printing HTML pages, make screen and print appear the same.</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 08:29:22 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dynamicweb]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/</guid>
		<description><![CDATA[When using external stylesheets on a webpage you can specify which “media” it should apply to. For instance see these lines: &#60;link rel=&#34;stylesheet&#34; href=&#34;Blueprint/screen.css&#34; type=&#34;text/css&#34; media=&#34;screen, projection&#34; /&#62; &#60;link rel=&#34;stylesheet&#34; href=&#34;Blueprint/print.css&#34; type=&#34;text/css&#34; media=&#34;print&#34; /&#62; .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre [...]]]></description>
			<content:encoded><![CDATA[<p>When using external stylesheets on a webpage you can specify which “media” it should apply to. For instance see these lines:</p>
<pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">link</span> <span class="attr">rel</span><span class="kwrd">=&quot;<a href="http://www.netsi.dk/wordpress/index.php/tag/stylesheet/" class="st_tag internal_tag" rel="tag" title="Posts tagged with stylesheet">stylesheet</a>&quot;</span> <span class="attr">href</span><span class="kwrd">=&quot;Blueprint/screen.<a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">css</a>&quot;</span> <span class="attr">type</span><span class="kwrd">=&quot;text/css&quot;</span> <span class="attr">media</span><span class="kwrd">=&quot;screen, projection&quot;</span> <span class="kwrd">/&gt;</span>
<span class="kwrd">&lt;</span><span class="html">link</span> <span class="attr">rel</span><span class="kwrd">=&quot;stylesheet&quot;</span> <span class="attr">href</span><span class="kwrd">=&quot;Blueprint/<a href="http://www.netsi.dk/wordpress/index.php/tag/print/" class="st_tag internal_tag" rel="tag" title="Posts tagged with print">print</a>.css&quot;</span> <span class="attr">type</span><span class="kwrd">=&quot;text/css&quot;</span> <span class="attr">media</span><span class="kwrd">=&quot;print&quot;</span> <span class="kwrd">/&gt;</span></pre>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .<a href="http://www.netsi.dk/wordpress/index.php/tag/html/" class="st_tag internal_tag" rel="tag" title="Posts tagged with html">html</a> { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</p>
<p>As you might allready have guessed the <strong>screen.css</strong> will be choosen for screen (read: browser) and projection mode. When printing the <strong>print.css</strong> will be choosen if you print the webpage. So far so good.</p>
<p>Some times you will have a specific page for print, which say will render only a stripped down version of your content and prompt the user with a print dialogue (using a <a href="http://www.netsi.dk/wordpress/index.php/tag/javascript/" class="st_tag internal_tag" rel="tag" title="Posts tagged with javascript">javascript</a> window.print() line of code). But when you see the page in the browser you are in “screen” media, and the style shown will be as defined in the screen.css. You may confuse the user as he gets a screen version ready for print – and printing it wil result in a version based on the print.css. I have made a <a href="http://www.netsi.dk/wordpress/index.php/tag/jquery/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jquery">jQuery</a> based fix for this situation.</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/07/image.png" rel="lightbox[687]"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="The page before and after the fix" border="0" alt="The page before and after the fix" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/07/image_thumb.png" width="711" height="392" /></a></p>
<h3>The jQuery fix</h3>
<p>The fix will disable any external stylesheets related to screen and make the print.css work on media types “all”. It is coded so that it will check for a “#print” added to the URL. So you should simply make the URL of the printversion have a “#print” in it. Here is the fix:</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="kwrd">&lt;</span><span class="html">script</span> <span class="attr">type</span><span class="kwrd">=&quot;text/javascript&quot;</span> <span class="attr">src</span><span class="kwrd">=&quot;http://ajax.microsoft.com/ajax/jQuery/jquery-1.6.2.min.js&quot;</span><span class="kwrd">&gt;&lt;/</span><span class="html">script</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">   2:  </span>&lt;script type=<span class="str">&quot;text/javascript&quot;</span>&gt;</pre>
<pre class="alt"><span class="lnum">   3:  </span><span class="rem">/* STH: 2011-07-07 Make any stylesheets target for &quot;print&quot; media active on &quot;all&quot; media types (including screen)</span></pre>
<pre><span class="lnum">   4:  </span><span class="rem">    Also disable any layouts for screen</span></pre>
<pre class="alt"><span class="lnum">   5:  </span><span class="rem">*/</span></pre>
<pre><span class="lnum">   6:  </span>jQuery(<span class="kwrd">function</span>() {</pre>
<pre class="alt"><span class="lnum">   7:  </span>  <span class="kwrd">var</span> bPrint = (window.location.toString().indexOf(<span class="str">'#print'</span>)!=-1);  </pre>
<pre><span class="lnum">   8:  </span>  <span class="kwrd">if</span> (bPrint) {</pre>
<pre class="alt"><span class="lnum">   9:  </span>    <span class="rem">// The user wants to print this page</span></pre>
<pre><span class="lnum">  10:  </span>    jQuery(<span class="str">'link[media*=&quot;print&quot;]'</span>).attr(<span class="str">'media'</span>, <span class="str">'all'</span>); <span class="rem">// Enable the print styling for all media types, including screen.</span></pre>
<pre class="alt"><span class="lnum">  11:  </span>    jQuery(<span class="str">'link[media*=&quot;screen&quot;]'</span>).remove(); <span class="rem">// remove any styling related to screen</span></pre>
<pre><span class="lnum">  12:  </span>  }</pre>
<pre class="alt"><span class="lnum">  13:  </span>})</pre>
<pre><span class="lnum">  14:  </span><span class="kwrd">&lt;/</span><span class="html">script</span><span class="kwrd">&gt;</span></pre>
</div>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>&#160;</p>
<p>The fix above has a link to jQuery, you do not have to include it if you allready have jQuery on your webpage.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F07%2F07%2Fprinting-html-pages-make-screen-and-print-appear-the-same%2F&amp;title=Printing%20HTML%20pages%2C%20make%20screen%20and%20print%20appear%20the%20same." id="wpa2a_6"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Introducing &#8220;Xara Designer Pro 7&#8221;, all you need to work with graphics!</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/06/26/introducing-xara-designer-pro-7-all-you-need-to-work-with-graphics/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/06/26/introducing-xara-designer-pro-7-all-you-need-to-work-with-graphics/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 14:47:58 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[xara]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Xara Designer Pro 7]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/06/26/introducing-xara-designer-pro-7-all-you-need-to-work-with-graphics/</guid>
		<description><![CDATA[Xara is the name of a British company which has been living in the shadow of Adobe for many years with its all-in-one graphics application. This version has been around since ARM was a custom chip running a desktop computer called Acorn Risc PC. Perhaps this is a good thing to relate to, as ARM [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Click to goto Xara.com and download your free trial copy of Xara Designer Pro" href="http://www.xara.com/eu/downloads/designer/" target="_blank"><img style="margin: 0px 0px 20px 20px; display: inline; float: right;" src="http://www.xaraxone.com/webxealot/workbook89/index_html_files/21.png" alt="" align="right" /></a><em><a href="http://www.netsi.dk/wordpress/index.php/tag/xara/" class="st_tag internal_tag" rel="tag" title="Posts tagged with xara">Xara</a> is the name of a British company which has been living in the shadow of Adobe for many years with its all-in-one graphics application. This version has been around since ARM was a custom chip running a desktop computer called Acorn Risc PC. Perhaps this is a good thing to relate to, as ARM now is properly the most successful chipset around in the world, taking every from Google Cromebooks over Apple iPads, Android “pads”, TV sets and even windows 8 by storm. The same should happen to this graphics application called <a href="http://www.netsi.dk/wordpress/index.php/tag/xara/" class="st_tag internal_tag" rel="tag" title="Posts tagged with xara">Xara</a> Designer Pro 7 ! It’s fast, rich featured, easy to use, compatible with other main graphics packages like Adobe Photoshop, it produces SVG, webpages and I could go on! You should at least go and download a free trial from: </em><a href="http://www.xara.com"><em>www.xara.com</em></a><em>!</em></p>
<h3>Vector, pixel, <a href="http://www.netsi.dk/wordpress/index.php/tag/html/" class="st_tag internal_tag" rel="tag" title="Posts tagged with html">HTML</a>, presentation, video, 3D and DTP…</h3>
<p>The program has many basic things build into one application, I like that. Everything you create in it is vector based, except of cause if you work with pixel based elements like photos. At my work where I implement websites in CMS systems I use Xara for many types of graphics operations. I might design buttons where I get automated scaled versions which also have mouse hovering and selected states. They are vector based, so scaling them up and down is very easy. I can use theme colors which makes it possible to reuse them on other websites. I can add popup layers to them and links. I simply export it, and <a href="http://www.netsi.dk/wordpress/index.php/tag/xara-designer-pro-7/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Xara Designer Pro 7">Xara Designer Pro 7</a> produces a HTML page in seconds containing exactly what I need in the CMS system.</p>
<p>At a later state when I need to document the use of the website I can create a manual with working buttons inside it, the same buttons as I just used on the website. I can even export the pages to PDF, giving the customer both an offline manual (PDF) and a full featured HTML website with the documentation.</p>
<h3>A webpage with some of the enhancements</h3>
<p><a href="http://www.netsi.dk/xara/XDP7/index.htm"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="See an example of the HTML that Xara Designer Pro 7 can generate" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0014.png" border="0" alt="See an example of the HTML that Xara Designer Pro 7 can generate" width="640" height="300" /></a></p>
<p>I have collected some of the features on two webpages. They of cause have been created in Xara Designer Pro 7!</p>
<h3>Some of the new enhancements</h3>
<p>Xara Designer Pro 7 has been packed with a lot of enhancements to the way that you use the program. Many of them relate to the program trying to a more “mainstream” Windows 7 application. For instance the tabbed document windows and the fly-out and docking option for the gallery system. Those enhancements are nice to new users but for me not essential, because I know my way around the application with or without such standard windows 7 UI.</p>
<p>Xara Designer Pro 7 offers <strong>new paste options</strong> allowing you to paste different properties to objects. If you for instance need one object to have same size as another you simply select the first object which is placed where you want to position both object, press Ctll+C. Now a lot of information from that object is on the clipboard and you can select any other to copy various properties from it onto other objects. In this case, the position. Some of the many paste options which Xara Designer Pro 7 now offers are:</p>
<ul>
<li>Paste replacing selection</li>
<li>Paste format/attributes. This will apply relevant attributes from object on clipboard to selected object. For instance color, shadow or opacity.</li>
<li>Paste opacity mask. You can use any object as an opacity mask. This for instance allows you to have Text appear as a mask on a photo. Opacity masks in Xara Designer Pro 7 will mask out the object is placed on – black colors will give 100% masking, and white no masking.</li>
<li>Paste position; change the position of the selected object to that of that of the object on the clipboard. If however you have several objects on clipboard it gets a little tricky. I experienced that it just moved the object outside the canvas – not logical.</li>
</ul>
<p>Another great enhancement is the ability to <strong>edit groups in a separate window</strong>, allowing you to focus on the elements in the group. You simply double click on the group and a new “inside editing window” is opened. I like that feature.</p>
<p>Some of the existing functions have been arranged differently or made easier/quickly to access. For instance the alignment function can now be accessed directly by right clicking on your mouse. Small changes, but I guess that it all adds to Xara Designer Pro 7 being even faster to use.</p>
<h5>New features</h5>
<p><strong>Live copies</strong> – you can have objects where changes to the properties of each copy will apply to all the live copies of the element. Size, rotation, opacity and other properties however will be local to each copy. An interesting new feature which I for one am looking forward to use.</p>
<p><strong>Magic snap</strong> &#8211; visual help and snapping when aligning objects allows you to create good looking designs much easier. Take a look at this example:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0034.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="The aligment lines makes it very easy to align elements" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0034_thumb.png" border="0" alt="The aligment lines makes it very easy to align elements" width="640" height="423" /></a></p>
<p>The alignment of the text above was easily done, as Xara Designer Pro 7 showed lines indicating where I could align two objects. This makes a design better in balance. What the illustration also shows is that I add a mouse over effect with a popup layer fading in. Xara Designer Pro 7 can save anything which you produce as webpages and in the HTML you can easily add things like mouse over, links, menus, and popups. Xara Designer Pro 7 has added transition effects and other nice things.</p>
<p><strong>Photo magic erase</strong> allows you to easily remove elements of a photo in a way which makes look like the element was never there. This is an example of the pixel related editing of Xara Designer Pro 7. It appears to work like similar features in other pixel based application like for instance Adobe Photoshop, but actually it is not working on the original image and you can work with it as if it was vector based changes.</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0044.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="The girl to the left have been ereased using Photo magic erease" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0044_thumb.png" border="0" alt="The girl to the left have been ereased using Photo magic erease" width="640" height="194" /></a></p>
<p>As you can see below the way that Xara Designer Pro 7 created the magic erase effect was in fact to slice out part of the photo and fill it with pixels making the element disappear. I have selected the slice, added a glow shadow (which can be added to <strong>any</strong> element in Xara Designer Pro 7! and is editable at <strong>any</strong> time) and applied opacity. You can then see through the sliced element and the diapered part of the original picture is again visible.</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0054.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Xara Designer Pro 7 actually just adds a sliced vector element on top of the original photo to create the magic erease effect" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0054_thumb.png" border="0" alt="Xara Designer Pro 7 actually just adds a sliced vector element on top of the original photo to create the magic erease effect" width="640" height="391" /></a></p>
<h3>And a lot more…</h3>
<p>Many other things have been added especially to the HTML part of Xara Designer Pro 7. I suggest that you see the videos and press F1 (Yes, windows help – it’s okay to use it!). Locate the “What’s new in Xara Designer Pro 7?” and spend some time reading it and seeing the examples. I simply could not find the time here to mention all of them. But a short list of new features I can offer:</p>
<ul>
<li>More widgets. Facebook, Google maps,</li>
</ul>
<h3>New to Xara Designer Pro? Some advices for you…</h3>
<p>If you have not tried previous versions of Xara Designer Pro you have a lot to look forward to! Of cause there will be a learning curve, but just visit some of the many online resources – I have listed some of them below. Actually this is one of the areas where I find that Xara is taking good care of its customers – take this statement for instance:</p>
<blockquote><p><strong>From e-mail: “Information about Xara Designer Pro 7” which you receive when you have registered your Xara product.</strong></p>
<p>“Don&#8217;t miss the <a href="http://www.xara.com/eu/products/designer/tutorials-demos/">intro movies</a> on our website (or click the Movies option in the Help menu). There are over 100 movies covering features and techniques and they are a great place to start learning about Designer Pro.”</p></blockquote>
<p>Do not hesitate to ask “stupid” questions on the various <a href="http://www.talkgraphics.com/">talkgraphics.com forums</a> – we were all beginners at one time</p>
<p>Open and take a look at all the examples included in the gallery:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0064.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Many great examples can be downloaded - be inspired by them!" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0064_thumb.png" border="0" alt="Many great examples can be downloaded - be inspired by them!" width="640" height="449" /></a></p>
<p>An example is this extreme drawing, all vectors:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0074.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Find this example vector drawing and try to zoom deep (around 28000%) to view what is hiding in the drawing" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0074_thumb.png" border="0" alt="Find this example vector drawing and try to zoom deep (around 28000%) to view what is hiding in the drawing" width="342" height="480" /></a></p>
<p>Remember that <strong>any</strong> drawing you do can contain pages, layers, objects which can all be exported to various formats, including complete HTML pages, PDF files, Adobe PSD files, SVG. You can publish directly to an FTP site. You have unlimited undo/redo, auto save (backup). The undo/redo history is saved together with your document. Xara is extremely good at packing its files – I have tried to load a JPEG (from Adobe) into Xara Designer Pro and save it, leading to file size much smaller than the original JPEG file!</p>
<p>You also get a lot of “free” fonts and clipart, website templates and ready-to-use elements like buttons and navigation elements. Xara supports many color modes, from HEX to CMYK and Pantone. You can create serious <a href="http://www.netsi.dk/wordpress/index.php/tag/print/" class="st_tag internal_tag" rel="tag" title="Posts tagged with print">print</a> related output including color separation handling. You can easily use Xara Design Pro 7 as a DTP program! The advanced way you can let text flow from textboxes to textboxes and around object is so cool. And yes it works fine if you export your work into a webpage! Xara produces valid HTML and will not change your text into graphics! Oh and for us website developers: Ctrl+Shift+L will give you instant Lorem Ipsum text I love it!</p>
<blockquote><p>I know it’s nerded: but build in Lorem Ipsum is a feature well worth mentions:</p>
<p><em>Ad veniam ad minim aliquip, voluptate cupidatat. Sint ex velit in. Sunt enim pariatur sit non, dolore, ut occaecat consequat non ad non aute ullamco sed aute excepteur. Enim dolore exercitation ex nisi cupidatat culpa.</em></p></blockquote>
<p>Navigation bar builder making it very easy to construct navigations bars:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0084.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="The Navigation Bar tool" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0084_thumb.png" border="0" alt="The Navigation Bar tool" width="576" height="480" /></a></p>
<p>Two panorama creating tools – the build simple and the advanced Magix PanoramaStudio 2. Here is a simple example from Aarhus, Denmark. Only 4 images were used.</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0094.png" rel="lightbox[664]"><img style="background-image: none; margin: 0px 12px 12px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="The Magix PanoramaStudio 2 in action" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/06/clip_image0094_thumb.png" border="0" alt="The Magix PanoramaStudio 2 in action" width="640" height="326" /></a></p>
<p>The Magix PanoramaStudio 2 can even generate an interactive panorama using <a href="http://www.netsi.dk/wordpress/index.php/tag/flash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with flash">Flash</a> and HTML. The above view can be seen online here: <a href="http://www.netsi.dk/xara/XDP7/panorama/AarhusDenmark.html">Aarhus, Denmark</a></p>
<p>I could go on… But visit the links below to see good tutorials!</p>
<h3>Conclusion</h3>
<p>With the release of Xara Designer Pro 7 the world’s best one-in-one graphic package have just gotten closer to being perfect! As we all know nothing is perfect, so I can’t call it perfect. There is still room for improvements, but the history tells that Xara is listening to its users, and follow trends in the world surrounding the Xara world. With internet being a very powerful media to communicate and emerging technologies like the CANVAS element of HTML5 and the powerful features of <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a>3, my guess is that Xara Designer Pro 8 when it comes will be much more focused on bringing content to the new taking into account things like <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a>3 based gradients, round corners, custom fonts and transitions. The current version Xara Designer Pro 7 have put a lot of effort into this, and to Xara Designer Pro 7 super users who understand this application and all it offers like Wizards for internet the sky is the limit.</p>
<p>Every time – actually ever since my first version of Xara Designer called Artworks – I have shown people this application to my friends they have been blown away and impressed by its abilities, features, ease of use and speed. Nothing has changed there in Xara Designer Pro 7 – everything has just gotten even more smart and nice to use!</p>
<p>I think that Xara Designer Pro 7 deserves even more attention, and I would like to end where I started: I hope that Xara Designer Pro 7 like the ARM chip will get the deserved success in the years to come! I am looking forward to seeing the Xara Designer Pro run on an ARM based Windows 8, bringing the old palls together again!</p>
<p>&nbsp;</p>
<h5>Links</h5>
<ul>
<li>Download a trial version: <a href="http://www.xara.com">www.xara.com</a></li>
<li>Talkgraphics a forum for Xara users: <a href="http://www.talkgraphics.com/">http://www.talkgraphics.com/</a></li>
<li>“<a href="http://www.xara.com/eu/outsider/">The Outsider</a>” a monthly online newsletter with lots of relevant material for Xara users: Tutorials, featured artists and more.</li>
<li>“<a href="http://www.xara.com/eu/gallery/">The Xara gallery</a>” &#8211; A must visit website where you can see what can be done using Xara Designer products.</li>
<li><a href="http://support.xara.com/">Support from Xara</a> – nice to have, for users of Xara products.</li>
<li>YouTube search for Xara Designer Pro 7: <a href="http://goo.gl/xsTZV">http://goo.gl/xsTZV</a></li>
<li>Xara Group on twitter: <a href="http://twitter.com/#!/xaragroup">http://twitter.com/#!/xaragroup</a></li>
<li>Xara trove: <a href="http://xhris.digitalred.net/index.htm">http://xhris.digitalred.net/index.htm</a> – a great resource for Xara related stuff</li>
<li>Xara software on Facebook: <a href="https://www.facebook.com/pages/Xara/63703226328">https://www.facebook.com/pages/Xara/63703226328</a></li>
<li><a href="http://www.xaraxone.com/">The Xara Xone</a> &#8211; The Xara Xone contains a lot of very useful help, guides and tutorials</li>
<li>An example of a website made using Xara Designer Pro 7:<a title="You find a lot of resources needed to create a website on this site created using Xara Designer 7" href="http://newbie2webdesigner.com/"> http://newbie2webdesigner.com/</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F06%2F26%2Fintroducing-xara-designer-pro-7-all-you-need-to-work-with-graphics%2F&amp;title=Introducing%20%26ldquo%3BXara%20Designer%20Pro%207%26rdquo%3B%2C%20all%20you%20need%20to%20work%20with%20graphics%21" id="wpa2a_8"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/06/26/introducing-xara-designer-pro-7-all-you-need-to-work-with-graphics/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Bind the checkbox checked status from one checkbox to other checkboxes using jQuery plugin &#8220;reflectStatusOn&#8221;</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/05/29/bind-the-checkbox-checked-status-from-one-checkbox-to-other-checkboxes-using-jquery-plugin-reflectstatuson/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/05/29/bind-the-checkbox-checked-status-from-one-checkbox-to-other-checkboxes-using-jquery-plugin-reflectstatuson/#comments</comments>
		<pubDate>Sun, 29 May 2011 21:49:38 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[addIn]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[reflectStatusOn]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/05/29/bind-the-checkbox-checked-status-from-one-checkbox-to-other-checkboxes-using-jquery-plugin-reflectstatuson/</guid>
		<description><![CDATA[I have coded a simpel jQuery addIn/plug-in which will bind the checked status from checkboxes to others. Lets say that you have a rule saying that: If people choose football clubs in London area they should automatically get Arsenal, Chelsea, Fulham, QPR, Tottenham Hotspur and so on… Then the code might look like this: jQuery(‘#london’).reflectStatusOn(‘#Arsenal, [...]]]></description>
			<content:encoded><![CDATA[<p>I have coded a simpel <a href="http://www.netsi.dk/wordpress/index.php/tag/jquery/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jquery">jQuery</a> <a href="http://www.netsi.dk/wordpress/index.php/tag/addin/" class="st_tag internal_tag" rel="tag" title="Posts tagged with addIn">addIn</a>/<a href="http://www.netsi.dk/wordpress/index.php/tag/plug-in/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plug-in">plug-in</a> which will bind the checked status from checkboxes to others. Lets say that you have a rule saying that:</p>
<blockquote><p>If people choose football clubs in London area they should automatically get Arsenal, Chelsea, Fulham, QPR, Tottenham Hotspur and so on…</p>
</blockquote>
<p>Then the code might look like this:</p>
<p><strong>jQuery(‘#london’).<a href="http://www.netsi.dk/wordpress/index.php/tag/reflectstatuson/" class="st_tag internal_tag" rel="tag" title="Posts tagged with reflectStatusOn">reflectStatusOn</a>(‘#Arsenal, #Chelsea, #Fulham, #QPR, #TottenhamHotspur’);</strong></p>
<p>You may download and see example of use on my code area: </p>
<p><a href="http://code.netsi.dk/jquery.reflectStatusOn/default.html">http://code.netsi.dk/jquery.reflectStatusOn/default.html</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F05%2F29%2Fbind-the-checkbox-checked-status-from-one-checkbox-to-other-checkboxes-using-jquery-plugin-reflectstatuson%2F&amp;title=Bind%20the%20checkbox%20checked%20status%20from%20one%20checkbox%20to%20other%20checkboxes%20using%20jQuery%20plugin%20%26ldquo%3BreflectStatusOn%26rdquo%3B" id="wpa2a_10"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/05/29/bind-the-checkbox-checked-status-from-one-checkbox-to-other-checkboxes-using-jquery-plugin-reflectstatuson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;plugInReflector&#8221; a new jQuery plug-in targeted at using and implementing jQuery plug-ins</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/03/11/pluginreflector-a-new-jquery-plug-in-targeted-at-using-and-implementing-jquery-plug-ins/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/03/11/pluginreflector-a-new-jquery-plug-in-targeted-at-using-and-implementing-jquery-plug-ins/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 13:49:07 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[plugInReflector]]></category>
		<category><![CDATA[plug-in]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/03/11/pluginreflector-a-new-jquery-plug-in-targeted-at-using-and-implementing-jquery-plug-ins/</guid>
		<description><![CDATA[Many times I have tried to implement cool jQuery plug-ins and many times I have read the descriptions about all the options and settings for each and every plug-in. Sometimes many examples and good documentation exists, but in every case for a long time now I have had this idea to build a tool which [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Many times I have tried to implement cool <a href="http://www.netsi.dk/wordpress/index.php/tag/jquery/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jquery">jQuery</a> plug-ins and many times I have read the descriptions about all the options and settings for each and every <a href="http://www.netsi.dk/wordpress/index.php/tag/plug-in/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plug-in">plug-in</a>. Sometimes many examples and good documentation exists, but in every case for a long time now I have had this idea to build a tool which can do a standardalized auto discovering of plug-ins. “<a href="http://www.netsi.dk/wordpress/index.php/tag/jquery/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jquery">jquery</a>.<a href="http://www.netsi.dk/wordpress/index.php/tag/pluginreflector/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plugInReflector">plugInReflector</a>” plug-in is the outcome of these thoughts.</p>
</blockquote>
<h3>“If you take something from the net, you must give something back”</h3>
<p>My philosophy perhaps is simply just a definition of the word “share”, but I feel that I need to write it – this plug-in is also put to the internet with the sharing in mind, so feel free to use the plug-in! I have even put it so github.com, a place with structured filesharing (find the link below). I am new to github.com and feel 100% novice, but the plug-in with examples will be available out there.</p>
<h3>Why should you use plugInReflector?</h3>
<p>If you are a person working with the internet implementing websites and use jQuery plug-ins you find on the net, you will probertly find plugInReflector usefull. Lets say that you apply a jQuery based image gallery (like <a title="You should visit the homepage of the jQuery Cycle image gallery, if you have not yet seen it." href="http://jquery.malsup.com/cycle/" target="_blank">jQuery Cycle</a>) to an UL list called “gallery”. You can do it like this for instance:</p>
<pre class="brush: js; ruler: true; gutter: false; toolbar: false;">jQuery('.gallery').cycle();</pre>
<p>This will activate the gallery, but what about the settings? On the website for <a title="You should visit the homepage of the jQuery Cycle image gallery, if you have not yet seen it." href="http://jquery.malsup.com/cycle/" target="_blank">jQuery Cycle</a> you will get the authors documentation, telling you that you need to change “easing” if you need to choose another way to do the animated sliding. But what if you could simply add “.plugInReflector()” and then get a “disassembled” look at the actual settings, properties, objects and functions used by the plug-in to accive the current effect? Would that not be handy? Simply add the plugInReflector plug-in and change your gallery inserting code to:</p>
<pre class="brush: js; ruler: true; gutter: false; toolbar: false;">jQuery('.gallery').cycle().plugInReflector();</pre>
<p>
  <br />You will now get a full list of any settings bound to the gallery. Something like this (in plugInReflector 0.01):</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2011/03/image.png" rel="lightbox[528]"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="An example of the output from plugInReflector when doing reflection on jQuery Cycle image gallery" border="0" alt="An example of the output from plugInReflector when doing reflection on jQuery Cycle image gallery" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/03/image_thumb.png" width="640" height="305" /></a></p>
<p>The above output is auto generated <a href="http://www.netsi.dk/wordpress/index.php/tag/html/" class="st_tag internal_tag" rel="tag" title="Posts tagged with html">HTML</a> which is appended to the body, if you do not specify an element using the “output” option. The output option should be a jQuery selector (for instance #output).</p>
<h3>What to expect in next versions</h3>
<p>The current version – at the time of writing this post – is 0.01, which indicates the beta-alike state of the plug-in. I allready have several ideas for improvements here are some:</p>
<ul>
<li><strong>Generate settings object.</strong>
<p>This will make it possibel to save and use the new settings on the plug-in reflected on.</p>
</li>
<li><strong>Dynamically update plug-in with the changed settings.</strong>
<p>This will make it possibel for you to play-around and instantly see changes to the plug-in relected upon.</p>
</li>
<li><strong>Reposetory with known settings for plug-ins.</strong>
<p>Imagine that you not just get a row saying that “easing” is a string. Imagine that when we talk about “easing” we could put a selectbox in the output from the reflection process. Such a service could be accived if people start to <em>share</em> the relected output on a reposetory – leaving “fingerprints” would make it possibel to get more friendly help for the outputed reflection result. Perhaps even ask <em>plug-in developers</em> to help with more information about <em>which</em> settings is relevant and a friendly description about it. What a wonderful world it would be…</li>
</ul>
<h3>..what will you share with me?</h3>
<p>So please do leave your comments here, on <a title="The base of the plugInReflector at github.com" href="https://github.com/netsi1964/jQuery-PlugIn-Reflector-Plugin/tree/master" target="_blank">plugInReflector at github</a>, on twitter: <a title="My twitter account: netsi1964" href="http://twitter.com/netsi1964" target="_blank">netsi1964</a> or simply drop me an <a title="Send me an e-mail" href="mailto:netsi1964@gmail.com" target="_blank">e-mail</a>. If you have any comments or ideas they are welcome.</p>
<h5>Links</h5>
<ul>
<li>Download <a title="https://github.com/netsi1964/jQuery-PlugIn-Reflector-Plugin/tree/master" href="https://github.com/netsi1964/jQuery-PlugIn-Reflector-Plugin/tree/master" target="_blank">plugInreflector at github</a></li>
<li>The above test page on <a title="A subdomain where I will put future code projects" href="http://code.netsi.dk" target="_blank">code.netsi.dk</a>: <a title="A page where plugInReflector has been implemented on the jQuery Cycle plug-in" href="http://code.netsi.dk/jquery.plugInreflector/example01.html" target="_blank">Example01.html</a>&#160;</li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F03%2F11%2Fpluginreflector-a-new-jquery-plug-in-targeted-at-using-and-implementing-jquery-plug-ins%2F&amp;title=%26ldquo%3BplugInReflector%26rdquo%3B%20a%20new%20jQuery%20plug-in%20targeted%20at%20using%20and%20implementing%20jQuery%20plug-ins" id="wpa2a_12"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/03/11/pluginreflector-a-new-jquery-plug-in-targeted-at-using-and-implementing-jquery-plug-ins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Code Snippets for Visual Studio 2010</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/03/10/jquery-code-snippets-for-visual-studio-2010/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/03/10/jquery-code-snippets-for-visual-studio-2010/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 20:27:08 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/03/10/jquery-code-snippets-for-visual-studio-2010/</guid>
		<description><![CDATA[If you are working with Visual Studio 2010 and do frontend development using jQuery, you can find a very usefull package of 131 jQuery code Snippets! You can find them here: http://jquerysnippets.codeplex.com/documentation?referringTitle=Home]]></description>
			<content:encoded><![CDATA[<p>If you are working with <a href="http://www.netsi.dk/wordpress/index.php/tag/visual-studio-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Visual Studio 2010">Visual Studio 2010</a> and do frontend development using <a href="http://www.netsi.dk/wordpress/index.php/tag/jquery/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jquery">jQuery</a>, you can find a very usefull package of <strong>131 jQuery code <a href="http://www.netsi.dk/wordpress/index.php/tag/snippets/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Snippets">Snippets</a></strong>!</p>
<blockquote><p>You can find them here:</p>
<p><a href="http://jquerysnippets.codeplex.com/documentation?referringTitle=Home">http://jquerysnippets.codeplex.com/documentation?referringTitle=Home</a></p>
</blockquote>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F03%2F10%2Fjquery-code-snippets-for-visual-studio-2010%2F&amp;title=jQuery%20Code%20Snippets%20for%20Visual%20Studio%202010" id="wpa2a_14"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/03/10/jquery-code-snippets-for-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Improvements in Microsoft Visual Studio 2010, from a frontend webdevelopers point of view, part 1: javascript</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/09/22/improvements-in-microsoft-visual-studio-2010-from-a-frontend-webdevelopers-point-of-view-part-1-javascript/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/09/22/improvements-in-microsoft-visual-studio-2010-from-a-frontend-webdevelopers-point-of-view-part-1-javascript/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 21:48:39 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[XSLT]]></category>
		<category><![CDATA[intellisense]]></category>
		<category><![CDATA[Microsoft Visual studio 2010]]></category>
		<category><![CDATA[xml commenta]]></category>
		<category><![CDATA[xml documentation]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/09/22/improvements-in-microsoft-visual-studio-2010-from-a-frontend-webdevelopers-point-of-view-part-1-javascript/</guid>
		<description><![CDATA[Sometimes I have wondered just what the h**l they were thinking over at Microsoft: their flagship development tool just didn’t perform and deliver what you would expect from a tool of that caliber. That was before the Microsoft Visual Studio 2010 (VS 2010)! I will try to write about features in VS 2010 which makes [...]]]></description>
			<content:encoded><![CDATA[<p><em>Sometimes I have wondered just what the h**l they were thinking over at Microsoft: their flagship development tool just didn’t perform and deliver what you would expect from a tool of that caliber. That was before the <a href="http://www.netsi.dk/wordpress/index.php/tag/microsoft-visual-studio-2010/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Microsoft Visual studio 2010">Microsoft Visual Studio 2010</a> (VS 2010)! I will try to write about features in VS 2010 which makes me happy as a frontend web developer, hoping that you will gain something from it – and please do comment and share your experiences.</em></p>
<h1>The background: What I missed…</h1>
<p>I have during my 15 years career as web developer tried various development tools, and have touched the “backend” development side of web applications also. It seems that many rich development tools focus on the heavier backend development part of web application development with things like <a href="http://www.netsi.dk/wordpress/index.php/tag/intellisense/" class="st_tag internal_tag" rel="tag" title="Posts tagged with intellisense">intellisense</a>, <a href="http://www.netsi.dk/wordpress/index.php/tag/snippets/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Snippets">snippets</a> and so on. I have often wondered: Why should it be so difficult and not possible – especially in VS – to automate things, processes which is done many times every day? Rich development tools RDTs should support the “web craftsmen” trying to produce quality work. In real life “real” tools for craftsmen like a carpenter have evolved. Quality tools make the fundament for quality work! Anyway, we might just have got a piece of quality tool in VS 2010!</p>
<h2>The new features &#8211; <a href="http://www.netsi.dk/wordpress/index.php/tag/javascript/" class="st_tag internal_tag" rel="tag" title="Posts tagged with javascript">javascript</a></h2>
<p>In this part I focus on javascript in VS 2010.</p>
<h3>Javascript intellicence</h3>
<p><strong><a href="http://www.netsi.dk/wordpress/index.php/tag/jquery/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jquery">jQuery</a> embedded from local “standard” API javascript file.</strong> </p>
<p>It is near perfect now! The intellisense engine in VS 2010 seems to “think” nearly perfect. Say you want to use jQuery. If you include your jQuery API using a local version, you <em>will</em> get <strong>basic</strong> intellisense – that is objects inside the jQuery API will appear as you start typing. You will get <em>relevant</em> methods shown together with basic information about which parameters you can use. Okay, but it gets better!<br />
<h4>Microsoft minimised version of jQuery still has intellisence</h4>
</p>
<p>jQuery embedded from Microsoft at: <a title="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js" href="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js" target="_blank">http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js</a> <br />Using the MS CDN to get even a <strong>minified version</strong> of jQuery, you <strong>still</strong> get extensive intellisence!<a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image9.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" align="absMiddle" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb9.png" width="640" height="79"/></a> </p>
<blockquote><p>Note: <br />After you have added any external script file you can <em>update the javascript intellisense</em> using <code>[Shift]+[Ctrl]+J</code>. For big APIs like jQuery this might take perhaps 20 seconds.</p>
</p>
</blockquote>
<h4>jQuery plug-ins handled as well in intelisence</h4>
<p>Extra jQuery plug-ins added will also get intellisense, as expected, but also at the correct place <br />below you can see that I have added a script reference to the <a title="jQuery Cycle plug-in homepage" href="http://jquery.malsup.com/cycle/" target="_blank">jQuery Cycle plug-in</a> for jQuery. The “cycle” method now exists after I have used a jQuery selector $(‘#test’). The description of the method “cycle” however is not very useful – but that is because that the jquery.cycle.all.min.js file <strong>does not contain JavaScript documentation</strong> (more about that later). </p>
<p>If you think about it – VS 2010 is quit smart! It scans the cycle <a href="http://www.netsi.dk/wordpress/index.php/tag/plug-in/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plug-in">plug-in</a> and sees that it <strong>extends</strong> the jQuery API. That is how it can figure out – I guess – that the cycle method fits in as a method on a found elements of the “$” (or jQuery) method. Nice feature! </p>
<p>&nbsp; </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image10.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="The intellisence works perfect" border="0" alt="The intellisence works perfect" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb10.png" width="554" height="315"/></a> </p>
<h4>Dropdown filelist simplified</h4>
<p>Automatic dropdown file list when adding HTML code like “script”. Previously you had to click the “Pick URL…” and then point to the file which you wanted to use in your HTML document. Now you simply click on the file, if it is located at the same place as the current document. Nice. </p>
<p>&nbsp; </p>
<p>”<a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image11.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Dropdown filelist simplified" border="0" alt="Dropdown filelist simplified" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb11.png" width="566" height="214"/></a></p>
<h4>Snippets – finally!!</h4>
<p>I have written about snippets in Visual Studio in a previous post: <a title="Find Visual Studio Snippets ready for download on my DropBox folder" href="http://www.netsi.dk/wordpress/index.php/2010/08/05/find-visual-studio-snippets-ready-for-download-on-my-dropbox-folder/" target="_blank">Find Visual Studio Snippets ready for download on my DropBox folder</a>, but it is first in VS 2010 that it is actually possible to execute snippets in HTML mode! (Why, why, why?). Anyway you can now! And VS 2010 comes with a few snippets installed. </p>
<p><strong><a href="http://www.netsi.dk/wordpress/index.php/tag/snippet/" class="st_tag internal_tag" rel="tag" title="Posts tagged with snippet">Snippet</a> types “Surround with” and “Insert <a href="http://www.netsi.dk/wordpress/index.php/tag/snippet/" class="st_tag internal_tag" rel="tag" title="Posts tagged with snippet">snippet</a>” </strong><b><br /></b>If you do not know <a href="http://www.netsi.dk/wordpress/index.php/tag/how-to/" class="st_tag internal_tag" rel="tag" title="Posts tagged with how to">how to</a> activate them try the “<em>surround with snippet</em>” by pressing <code>[Ctrl]-K, [Ctrl]-S</code>. By doing that you get the chance to automate things like creating a JavaScript function using just two keyboard clicks and a mouse click. The Insert snippet can be archived using <code>[Ctrl]-K, [Ctrl]-X</code>. And remember: You can always create your own! </p>
</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image12.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Using the surround with snippet" border="0" alt="Using the surround with snippet" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb12.png" width="547" height="262"/></a> </p>
<p>Just discovered that in fact Microsoft has not made it possibel to use snippets within <a href="http://www.netsi.dk/wordpress/index.php/tag/css/" class="st_tag internal_tag" rel="tag" title="Posts tagged with css">CSS</a>… Why, why, why???</p>
<h4>Intellisence will execute your code dynamically to give better suggestions</h4>
<p>Say you define a string “effect” and assign it a <em>string</em> value. This will make VS 2010 execute the assignment and then “guess” that your variable is of the type String. So at a late point in your code you try to use the variable, <strong>the suggestions given by intellisense</strong> will be <strong>relevant</strong> to that type (string). Look at the example below. To the left a variable “effect” and to the right an “int”, the suggestions are not the same. Smart! and you can do some pretty nice things when your code is dynamically executed – try visiting the <a title="JavaScript Intellisense Improvements with VS 2010 - on ScottGu's Blog" href="http://weblogs.asp.net/scottgu/archive/2010/04/08/javascript-intellisense-improvements-with-vs-2010.aspx" target="_blank">JavaScript Intellisense Improvements with VS 2010 &#8211; on ScottGu&#8217;s Blog</a> and have a look at those examples.  </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image13.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Intelligence sugestions are related to the type of your variable..." border="0" alt="Intelligence sugestions are related to the type of your variable..." src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb13.png" width="640" height="212"/></a></p>
<h4>Your own intellisence using XML comments! </h4>
<p>Now there is no excuse why you do not document your JavaScript code! VS 2010 offers <strong>easy</strong> documentation using <strong>snippets and XML comments!</strong> It is so easy, simply press <code>[Ctrl]+K, [Ctrl]+X</code>, choose “XML Comments” and what type of comment you want to insert. After having done and (of cause) filling out the marked fields, <strong>your</strong> code will be providing <strong>intellisense</strong> and <strong>suggestions</strong> when other people use it! <strong>Cool!</strong> </p>
<p>You can see below a simple function called “myhide”, The 3 lines below the function have been inserted using the above mentioned XML comments snippet. I defined a summary, a return definition and a param description. Voila! My function now has intellisense and build in help – which will without doubt be useful for me and others at a later state. You can make this part quit advanced with references to documentation files, assemblies and more.  </p>
</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image14.png" rel="lightbox[394]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Here goes your excuse for not documenting your javascript code anymore! XML Comments in javascript." border="0" alt="Here goes your excuse for not documenting your javascript code anymore! XML Comments in javascript." src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/09/image_thumb14.png" width="640" height="351"/></a> </p>
<p>&nbsp;</p>
<h4>Various small changes</h4>
<ul>
<li>You can zoom the work area as you can in your browser. Just hold down <code>[Ctrl]</code>while rolling the wheel of you mouse up and down. Guess that woud be nice for elderly people like me <img src='http://www.netsi.dk/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   </li>
<li>All these improvements also apply to the <strong>free</strong> <a title="Go to this url to start installing the Visual Web Developer 2010 Express" href="http://www.microsoft.com/web/gallery/install.aspx?appid=VWD2010" target="_blank">Visual Web Developer 2010 Express</a>! </li>
</ul>
<p>&nbsp;</p>
</p>
<h5>Links</h5>
<ul>
<li><a title="JavaScript Intellisense Improvements with VS 2010 - on ScottGu's Blog" href="http://weblogs.asp.net/scottgu/archive/2010/04/08/javascript-intellisense-improvements-with-vs-2010.aspx" target="_blank">JavaScript Intellisense Improvements with VS 2010 &#8211; on ScottGu&#8217;s Blog</a>  </li>
<li><a title="VS 2010 and .NET 4 Series - on ScottGu's Blog" href="http://weblogs.asp.net/scottgu/archive/2009/08/25/vs-2010-and-net-4-series.aspx" target="_blank">VS 2010 and .NET 4 Series &#8211; on ScottGu&#8217;s Blog</a> </li>
</ul>
<pre></pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2010%2F09%2F22%2Fimprovements-in-microsoft-visual-studio-2010-from-a-frontend-webdevelopers-point-of-view-part-1-javascript%2F&amp;title=Improvements%20in%20Microsoft%20Visual%20Studio%202010%2C%20from%20a%20frontend%20webdevelopers%20point%20of%20view%2C%20part%201%3A%20javascript" id="wpa2a_16"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/09/22/improvements-in-microsoft-visual-studio-2010-from-a-frontend-webdevelopers-point-of-view-part-1-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSON viewer &#8211; comes handy</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/05/14/json-viewer-comes-handy/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/05/14/json-viewer-comes-handy/#comments</comments>
		<pubDate>Fri, 14 May 2010 13:29:27 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[JSON]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/05/14/json-viewer-comes-handy/</guid>
		<description><![CDATA[Today I came across a JSON file, hmm… I love the opportunities that JSON gives you as a developer, but it is very compressed and not especially human friendly. Unlike XML, which on the other hand calls for a lot of coding inside a program to convert it into anything other that just data. JSON [...]]]></description>
			<content:encoded><![CDATA[<p><abbr class="datetime" title="2010-05-14">Today</abbr> I came across a <a href="http://www.netsi.dk/wordpress/index.php/tag/json/" class="st_tag internal_tag" rel="tag" title="Posts tagged with JSON">JSON</a> file, hmm… I love the opportunities that <a href="http://www.netsi.dk/wordpress/index.php/tag/json/" class="st_tag internal_tag" rel="tag" title="Posts tagged with JSON">JSON</a> gives you as a developer, but it <strong>is</strong> very compressed and not especially human friendly. Unlike XML, which on the other hand calls for a lot of coding inside a program to convert it into anything other that just data. JSON can contain actual code, functions, objects and ofcause data.</p>
<p>I then googled for JSON viewer and found a very cool tool! <a title="Here you can find the JSON viewer" href="http://jsonviewer.codeplex.com/" target="_blank">“JSON viewer” at codeplex.com</a>. It comes in three variants:</p>
</p>
<ol>
<li>A standalone viewer &#8211; JsonView.exe (view <a title="Example screenshoot, viewing JSON in standalone version" href="http://screencast.com/t/ZjllMmU1YWQt" target="_blank">example screenshoot</a>)      <br />No doubt – I found this very easy to use. Click to start, paste JSON and view it…      </li>
<li>A plugin for Fiddler 2 (http://www.fiddler2.com/) &#8211; FiddlerJsonViewer.dll     <br />Well, I do not have it installed.      </li>
<li>A visualizer for Visual Studio 2005 &#8211; JsonVisualizer.dll     <br />I followed the instructions (though in VS2008), but never really got to a point where I saw the visualizer appear. Perhaps I just dont get the concept of visualizer.</li>
</ol>
<p>I will not go any further into <a href="http://www.netsi.dk/wordpress/index.php/tag/how-to/" class="st_tag internal_tag" rel="tag" title="Posts tagged with how to">how to</a> install it, I believe that the readme.txt inside the ZIP file should explain that part. And <a href="http://www.netsi.dk/wordpress/index.php/tag/how-to/" class="st_tag internal_tag" rel="tag" title="Posts tagged with how to">how to</a> use it – well, try downloading this JSON: <a title="http://www.netsi.dk/wordpress/wp-content/uploads/2010/05/exampleJSON.js" href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/05/exampleJSON.js">http://www.netsi.dk/wordpress/wp-content/uploads/2010/05/exampleJSON.js</a> and play around with it!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2010%2F05%2F14%2Fjson-viewer-comes-handy%2F&amp;title=JSON%20viewer%20%26ndash%3B%20comes%20handy" id="wpa2a_18"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/05/14/json-viewer-comes-handy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using jQuery UI, is it easy?</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/02/21/using-jquery-ui-is-it-easy/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/02/21/using-jquery-ui-is-it-easy/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 11:10:33 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Is it easy?]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery UI]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/02/21/using-jquery-ui-is-it-easy/</guid>
		<description><![CDATA[The javascript API jQuery is a very powerfull libray which have revolutionised the use of clientside javascript in browsers. Along the side of jQuery exists jQuery UI a library of strongly customizable widgets. It offers a wide range of &#34;easy-to-implement&#34; widgets for your website. I will try in this post to implement a datepicker and [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.netsi.dk/wordpress/index.php/tag/javascript/" class="st_tag internal_tag" rel="tag" title="Posts tagged with javascript">javascript</a> API <a href="http://www.netsi.dk/wordpress/index.php/tag/jquery/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jquery">jQuery</a> is a <strong>very</strong> powerfull libray which have revolutionised the use of clientside javascript in browsers. Along the side of jQuery exists <strong><a href="http://www.netsi.dk/wordpress/index.php/tag/jquery-ui/" class="st_tag internal_tag" rel="tag" title="Posts tagged with jQuery UI">jQuery UI</a></strong> a library of strongly customizable widgets. It offers a wide range of &quot;easy-to-implement&quot; widgets for your website. I will try in this post to implement a <code>datepicker</code> and conclude in the end if it is easy!
<p>Read <a title="Read the article [Using jQuery UI, is it easy]" href="http://www.netsi.dk/showcases/jQuery_UI.html" target="_blank">the article</a> and post your comments here on this page.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2010%2F02%2F21%2Fusing-jquery-ui-is-it-easy%2F&amp;title=Using%20jQuery%20UI%2C%20is%20it%20easy%3F" id="wpa2a_20"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/02/21/using-jquery-ui-is-it-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

