<?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>Hdeya team blog &#187; lightbox</title>
	<atom:link href="http://www.hdeya.com/blog/tag/lightbox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hdeya.com/blog</link>
	<description>We can make IT</description>
	<lastBuildDate>Sun, 28 Mar 2010 11:28:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Generates lightbox on the fly using jQuery</title>
		<link>http://www.hdeya.com/blog/2009/05/generates-lightbox-on-the-fly-using-jquery/</link>
		<comments>http://www.hdeya.com/blog/2009/05/generates-lightbox-on-the-fly-using-jquery/#comments</comments>
		<pubDate>Sat, 02 May 2009 15:22:03 +0000</pubDate>
		<dc:creator>Mahmoud M. Abdel-Fattah</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quick Tip / Trick]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[on the fly]]></category>
		<category><![CDATA[thumbnails]]></category>

		<guid isPermaLink="false">http://www.hdeya.com/blog/?p=140</guid>
		<description><![CDATA[This method requires you to have  2 copies of each image, the original size &#38; thumbnail one. thumbnails MUST BE named as filename_thumb.jpg &#38; stored in /thumbs.  you must have the latest versions of <a href="code.google.com/p/jqueryjs/downloads/list">jQuery </a>&#38; <a href="http://leandrovieira.com/projects/jquery/lightbox/" target="_blank">jQuery Light Box Plugin</a>. 
then add the following javascript code to you &#60;head&#62;:

$&#40;document&#41;.ready&#40;function&#40;&#41;&#123;
    $&#40;&#34;img&#34;&#41;.each&#40;function&#40;&#41; &#123;
        var src_file = $&#40;this&#41;.attr&#40;&#34;src&#34;&#41;.split&#40;&#34;/&#34;&#41;;
        var src_file_name = src_file.pop&#40;&#41;;
        var patt1 = /_thumb.jpg/;
        var original_file_name = &#34;&#34;;
        if&#40;src_file_name.search&#40;patt1&#41; != -1&#41; &#123;
            original_file_name = src_file_name.replace&#40;/_thumb/gi, &#34;&#34;&#41;;
            $&#40;this&#41;.wrap&#40;&#34;&#38;lt;a href=\&#34;/uploads/&#34;+original_file_name+&#34;\&#34; rel=\&#34;lightbox\&#34;&#38;gt;&#38;lt;/a&#38;gt;&#34;&#41;;
        &#125;
    &#125;&#41;;
    $&#40;&#34;a[rel*=lightbox]&#34;&#41;.lightBox&#40;&#41;;
&#125;&#41;;

]]></description>
			<content:encoded><![CDATA[<p>This method requires you to have  2 copies of each image, the original size &amp; thumbnail one. thumbnails MUST BE named as <strong>filename_thumb.jpg</strong> &amp; stored in <strong>/thumbs</strong>.  you must have the latest versions of <a href="code.google.com/p/jqueryjs/downloads/list">jQuery </a>&amp; <a href="http://leandrovieira.com/projects/jquery/lightbox/" target="_blank">jQuery Light Box Plugin</a>. <span id="more-140"></span></p>
<p>then add the following javascript code to you &lt;head&gt;:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;img&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #003366; font-weight: bold;">var</span> src_file <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;src&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">split</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;/&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> src_file_name <span style="color: #339933;">=</span> src_file.<span style="color: #660066;">pop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> patt1 <span style="color: #339933;">=</span> <span style="color: #339933;">/</span>_thumb.<span style="color: #660066;">jpg</span><span style="color: #339933;">/;</span>
        <span style="color: #003366; font-weight: bold;">var</span> original_file_name <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>src_file_name.<span style="color: #660066;">search</span><span style="color: #009900;">&#40;</span>patt1<span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #339933;">-</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            original_file_name <span style="color: #339933;">=</span> src_file_name.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/_thumb/gi</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">wrap</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;&amp;lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>/uploads/&quot;</span><span style="color: #339933;">+</span>original_file_name<span style="color: #339933;">+</span><span style="color: #3366CC;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span> rel=<span style="color: #000099; font-weight: bold;">\&quot;</span>lightbox<span style="color: #000099; font-weight: bold;">\&quot;</span>&amp;gt;&amp;lt;/a&amp;gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a[rel*=lightbox]&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.hdeya.com/blog/2009/05/generates-lightbox-on-the-fly-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
