<?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>christopherreding.com &#187; JQuery</title>
	<atom:link href="http://christopherreding.com/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://christopherreding.com</link>
	<description>jQuery PHP Coldfusion MySql ASP.NET XSLT and Flash - with some added random thoughts</description>
	<lastBuildDate>Tue, 27 Jul 2010 16:44:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Creating a page overlay with jQuery</title>
		<link>http://christopherreding.com/creating-a-page-overlay-with-jquery/</link>
		<comments>http://christopherreding.com/creating-a-page-overlay-with-jquery/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 12:57:16 +0000</pubDate>
		<dc:creator>Christopher Reding</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Modal]]></category>
		<category><![CDATA[Overlay]]></category>

		<guid isPermaLink="false">http://christopherreding.com/?p=43</guid>
		<description><![CDATA[Seems like everywhere you look websites are using pop-up modals with some kind of transparent overlay. While there are different hacks to maintain browser compatibility, there is a common thread in execution. One solution uses  jQuery to append a div to the body of the page, that div is styled as an absolute positioned element [...]]]></description>
			<content:encoded><![CDATA[<p>Seems like everywhere you look websites are using pop-up modals with some kind of transparent overlay. While there are different hacks to maintain browser compatibility, there is a common thread in execution. One solution uses  jQuery to append a div to the body of the page, that div is styled as an absolute positioned element with a transparent background which makes it appear to overlay the content below. The overlay also servers the function of disabling the links in the content it overlays. Here is the code to get this to work.</p>
<p><a href="http://demo.christopherreding.com/overlaydemo.html" target="_blank">Demo</a></p>
<p><strong>First the CSS:</strong></p>
<pre class="brush:[css]">#overlay
{
 position: absolute;
 z-index: 99998;
 top: 0px;
 left: 0px;
 width: 100%;
 height: 100%;
 background-color:#000;
 opacity:0.5;
 cursor:wait;
}    </pre>
<p><strong>Now the jQuery:</strong></p>
<pre class="brush:[javascript]">&lt;script type="text/javascript"&gt;
$(document).ready(function(){
      $("#mybutton").click(function(){
           $("body").append('&lt;div id="overlay"&gt;&lt;/div&gt;');
           return false;
      });
 })
&lt;/script&gt;</pre>
<p><strong>Finally add the the button element:</strong></p>
<pre class="brush:[html]">&lt;a href="some.html" id="mybutton"&gt;Hello there&lt;/a&gt;
</pre>
<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fchristopherreding.com%2Fcreating-a-page-overlay-with-jquery%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fchristopherreding.com%2Fcreating-a-page-overlay-with-jquery%2F&amp;source=creding&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://christopherreding.com/creating-a-page-overlay-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>75 Amazing CSS Navigations and Jquery Examples</title>
		<link>http://christopherreding.com/75-amazing-css-navigations-and-jquery-examples/</link>
		<comments>http://christopherreding.com/75-amazing-css-navigations-and-jquery-examples/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 17:57:20 +0000</pubDate>
		<dc:creator>Christopher Reding</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://christopherreding.com/?p=11</guid>
		<description><![CDATA[http://www.designdazzling.com/2009/08/75-amazing-css-navigations-and-jquery-examples/ A pretty awesome list of jQuery plugins as well as a few tutorials, Very helpful if you are a novice or just looking for a shorter development time. Favorites: JQuery Curvy Corners Draggables and droppables jQZoom jQuery lightBox Plugin CSS Play Navigation Menus]]></description>
			<content:encoded><![CDATA[<div>
<p><a href="http://www.designdazzling.com/2009/08/75-amazing-css-navigations-and-jquery-examples/">http://www.designdazzling.com/2009/08/75-amazing-css-navigations-and-jquery-examples/</a></p>
<p>A pretty awesome list of jQuery plugins as well as a few tutorials, Very helpful if you are a novice or just looking for a shorter development time.</p>
<p>Favorites:</p>
<p><a href="http://blue-anvil.com/jquerycurvycorners/test.html" target="_blank">JQuery Curvy Corners</a></p>
<p><a href="http://interface.eyecon.ro/demos/drag_drop_tree.html" target="_blank">Draggables and droppables</a></p>
<p><a href="http://www.mind-projects.it/blog/?page_id=14" target="_blank">jQZoom</a></p>
<p><a href="http://leandrovieira.com/projects/jquery/lightbox/" target="_blank">jQuery lightBox Plugin</a></p>
<h5><a href="http://www.cssplay.co.uk/index" target="_blank">CSS Play Navigation Menus</a></h5>
</div>
<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fchristopherreding.com%2F75-amazing-css-navigations-and-jquery-examples%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fchristopherreding.com%2F75-amazing-css-navigations-and-jquery-examples%2F&amp;source=creding&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://christopherreding.com/75-amazing-css-navigations-and-jquery-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replace an image with a Quicktime movie using jQuery</title>
		<link>http://christopherreding.com/replace-an-image-with-a-quicktime-movie-using-jquery/</link>
		<comments>http://christopherreding.com/replace-an-image-with-a-quicktime-movie-using-jquery/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 17:56:03 +0000</pubDate>
		<dc:creator>Christopher Reding</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://christopherreding.com/?p=7</guid>
		<description><![CDATA[Include jquery with in the head of the page (get it here) http://jquery.com Then create 2 divs like this: &#60;div id="image"&#62; &#60;img id="myImage" src="images/fpo.jpg" width="200" height="200" /&#62; &#60;/div&#62; &#60;div id="qt" style="display:none;" &#62; &#60;embed src="something.mov" height="200" width="200" autostart="true" &#62;&#60;/embed&#62; &#60;/div&#62; Now Put this script within the head of the page. &#60;script type="text/javascript"&#62;]]></description>
			<content:encoded><![CDATA[<div>
<p><strong>Include jquery with in the head of the page (get it here) http://jquery.com</strong></p>
<p><strong>Then create 2 divs like this:</strong> <span><span> </span></span></p>
<pre class="brush:[javascript]">&lt;div id="image"&gt;
&lt;img id="myImage" src="images/fpo.jpg" width="200" height="200" /&gt;
&lt;/div&gt;
&lt;div id="qt" style="display:none;" &gt;
&lt;embed src="something.mov" height="200" width="200" autostart="true" &gt;&lt;/embed&gt;
&lt;/div&gt;</pre>
<p><strong>Now Put this script within the head of the page.</strong></p>
<pre class="brush:[javascript]">&lt;script type="text/javascript"&gt;
<script type="text/javascript"><!--mce:0--></script></pre>
</div>
<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fchristopherreding.com%2Freplace-an-image-with-a-quicktime-movie-using-jquery%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fchristopherreding.com%2Freplace-an-image-with-a-quicktime-movie-using-jquery%2F&amp;source=creding&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://christopherreding.com/replace-an-image-with-a-quicktime-movie-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
