<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="http://www.majordojo.com/projects/FeedManager/atom.xsl" type="text/xsl" media="screen"?>
<feed xmlns="http://www.w3.org/2005/Atom" 
      xmlns:thr="http://purl.org/syndication/thread/1.0">
  <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php" />
  <link rel="self" type="application/atom+xml" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php" />
  <id>tag:www.majordojo.com,2010://3/tag:www.majordojo.com,2009://3.14210-</id>
  <updated>2010-03-14T22:10:18Z</updated>
  <title>Comments for An upgrade to the jQuery Thickbox Plugin</title>
  <subtitle>A blog about Movable Type, technology, geek-dom, science-fiction and yes, sometimes my personal life.</subtitle>
  <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.261</generator>
  <entry>
    <id>tag:www.majordojo.com,2009://3.14210</id>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.majordojo.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=3/entry_id=14210" title="An upgrade to the jQuery Thickbox Plugin" />
    <published>2009-05-04T17:19:55Z</published>
    <updated>2009-05-05T16:49:45Z</updated>
    <title>An upgrade to the jQuery Thickbox Plugin</title>
    <summary>I have been doing a lot of work in jQuery as of late and stumbled across the popular jQuery plugin called &quot;Thickbox&quot; which works similarly to Lightbox, but is more fully featured. ThickBox is a webpage UI dialog widget written...</summary>
    <author>
      <name>Byrne</name>
      <uri>http://www.majordojo.com/</uri>
    </author>
    
    <category term="Open Source" />
    
    <content type="html" xml:lang="en" xml:base="http://www.majordojo.com/">
      <![CDATA[<p>I have been doing a lot of work in jQuery as of late and stumbled across the popular jQuery plugin called "<a href="http://jquery.com/demo/thickbox/">Thickbox</a>" which works similarly to <a href="http://leandrovieira.com/projects/jquery/lightbox/">Lightbox</a>, but is more fully featured. </p>

<blockquote>
  <p>ThickBox is a webpage UI dialog widget written in JavaScript on top of the jQuery library. Its function is to show a single image, multiple images, inline content, iframed content, or content served through AJAX in a hybrid modal.</p>
</blockquote>

<p>There were a couple of problems with the plugin though when I started using it. For one, the plugin has not been updated in a long time and was not compatible with the latest version of jQuery: 1.3.1. It also used a rather non-standard way of configuration and was completely non-extensible. In fact, it required users to edit CSS and Javascript files in order to point the library at the right images to use. That's no good at all because it makes it possible for a simple upgrade to break a site, granted in a minor way, but still.</p>

<p>No doubt the original author of the plugin has a million other things on his plate, so I thought I would chip in, upgrade the plugin, and contribute them back to the author and community, and if necessary take over maintenance of the plugin.</p>

<h2>Download</h2>

<ul>
<li><a href="/projects/downloads/jquery-thickbox-1.3-byrne.zip">Thickbox 1.3-byrne</a></li>
<li><a href="https://github.com/byrnereese/jquery-thickbox-byrne/">Source</a></li>
</ul>

<h2>Documentation</h2>

<h3>Installation Instructions</h3>

<ol>
<li><p>Upload the thickbox files to your web server.</p></li>
<li><p>In your web page using thickbox, import the javascript like so:</p>

<pre><code>&lt;script type="text/javascript" src="jquery.thickbox-byrne.js"&gt;&lt;/script&gt;
</code></pre></li>
<li><p>In your web page, import the CSS like so:</p>

<pre><code>&lt;link rel="stylesheet" href="thickbox.css" type="text/css" /&gt;
</code></pre></li>
<li><p>Read the rest of this documentation and initialize thickbox according to your needs.</p></li>
</ol>

<h3>Options/Settings</h3>

<p>The following options can be used when initializing Thickbox.</p>

<ul>
<li><p><code>macFFBgHack</code> - default: '../images/macFFBgHack.png'.
A path to the image "macFFBgHack.png" on your web server.</p></li>
<li><p><code>loadingImage</code> - default: '../images/thickbox-loading.gif'.
A path to the image "thickbox-loading.gif" on your web server.</p></li>
<li><p><code>modal</code> - boolean (true|false), default: false.
Determines whether or not the dialog that appears is modal or not. </p></li>
<li><p><code>iframe</code> - boolean (true|false), default: false.
Determines whether or not the dialog will be iframed content. </p></li>
<li><p><code>inlineId</code> - string, default: ''.
Sets the DOM id that contains the content that will be displayed in the thickbox.</p></li>
<li><p><code>width</code> - default: 600.
Sets the size (width obviously) of the thickbox.</p></li>
<li><p><code>height</code> - default: 400.
Sets the size (height obviously) of the thickbox.</p></li>
</ul>

<h3>Usage</h3>

<pre><code>    $('a.thickbox').thickbox({
            macFFBgHack: 'images/macFFBgHack.png',
            loadingImage: 'images/thickbox-loading.gif'
    });
</code></pre>

<h3>Demo</h3>

<p><style>
@import url(http://www.majordojo.com/projects/downloads/jquery-thickbox-1.3-byrne/thickbox.css);
</style></p>

<script type="text/javascript" src="http://www.majordojo.com/projects/downloads/jquery-thickbox-1.3-byrne/jquery.thickbox-byrne.js"></script>
<script type="text/javascript">
$(document).ready( function() {
        $('a.thickbox').thickbox({
                width: 250,
                height: 125,
                inlineId: 'foo',
                macFFBgHack: '/projects/downloads/jquery-thickbox-1.3-byrne/macFFBgHack.png',
                loadingImage: '/projects/downloads/jquery-thickbox-1.3-byrne/thickbox-loading.gif'
        });
});
</script>

<div id="foo">It worked!</div>

<p><a href="#foo" class="thickbox" title="Testing 1 2 3">Click me</a></p>

<h3>Changes between 1.3 and 1.3-byrne</h3>

<p>The version described here is '1.3-byrne' which is a fork of the original Thickbox plugin versioned 1.3. Here is a list of the changes I have made in my fork:</p>

<ul>
<li>thickboxes can be instantiated on any element ID now. It is no longer hard-coded to <code>$("a.thickbox")</code>.</li>
<li>thickboxes are now configured using a more standard settings/options array.</li>
<li>The plugin itself now utilizes more a more up-to-date coding standard for jQuery plugins.</li>
<li>The plugin is now compatible with jQuery 1.3 and greater.</li>
</ul>
]]>
      

    </content>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163090</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163090" />
    <title>Comment from Su on 2009-05-04</title>
    <author>
        <name>Su</name>
<!--        <uri>http://onmovabletype.com</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://onmovabletype.com">
	<![CDATA[<p>This is going to be some fantastically bad timing, but you should have a look at the Thickbox Reloaded version Klaus Hartl created a while back, in part because the original wasn't being worked on. </p>

<p>He made several programmatic and styling fixes and I can't remember whether or not they were all integrated with Cody's original when he did eventually do an update. Most importantly, though, it also implemented a way to assign the TB action to a jQuery selector(making it more "plugin-like"), so that authors wouldn't have to add the class="thickbox" every single time, and that definitely wasn't picked up by Cody. You can find Klaus' version in the <a href="http://code.google.com/p/jqueryjs/" rel="nofollow">jQuery Google Code project</a> under trunk/plugins. You'll have to check the code out; the web interface only shows a partial listing for that dir.
I'm having trouble finding the post--or I suspect e-mail--where Klaus went over all the details of what he changed, but <a href="http://www.stilbuero.de/2006/11/06/a-smoother-thickbox-with-less-code/" rel="nofollow">here's a start</a>.</p>
]]>
    </content>
    <published>2009-05-04T22:00:37Z</published>
    <updated>2009-05-04T22:00:37Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163091</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163091" />
    <title>Comment from Su on 2009-05-04</title>
    <author>
        <name>Su</name>
<!--        <uri>http://onmovabletype.com</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://onmovabletype.com">
	<![CDATA[<p>Aaaaaand on re-scan it looks from the usage snippet like you did your own implementation of the selector bit. The usage snippet was still referring a.thickbox and I glossed. At any rate, it might still be worth a peek at what Klaus did in case there's anything interesting.</p>
]]>
    </content>
    <published>2009-05-04T22:06:57Z</published>
    <updated>2009-05-04T22:06:57Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163092</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163092" />
    <title>Comment from Byrne on 2009-05-04</title>
    <author>
        <name>Byrne</name>
<!--        <uri>http://www.majordojo.com/</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.majordojo.com/">
	<![CDATA[<p>I should absolutely merge his changes in. Too bad I didn't look harder for work someone else had done. On the plus side it looks like are changes are compatible so they should be easy to merge in.</p>
]]>
    </content>
    <published>2009-05-04T22:08:32Z</published>
    <updated>2009-05-04T22:08:32Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163098</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163098" />
    <title>Comment from Hans Mestrum on 2009-05-05</title>
    <author>
        <name>Hans Mestrum</name>
<!--        <uri>http://www.hansonexperience.com</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.hansonexperience.com">
	<![CDATA[<p>Hi Byrne,</p>

<p>I used this thing somewhile ago. Glad you've made for MT4. But I cannot see the code which you are mentioning in bullet 2 and 3.....
Do I miss something?</p>
]]>
    </content>
    <published>2009-05-05T14:03:49Z</published>
    <updated>2009-05-05T14:03:49Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163099</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163099" />
    <title>Comment from Byrne on 2009-05-05</title>
    <author>
        <name>Byrne</name>
<!--        <uri>http://www.majordojo.com/</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.majordojo.com/">
	<![CDATA[<p>Nope - I made a mistake in my Markdown. Thanks for pointing out the problem.</p>

<p>BTW - this is not for Movable Type. This is a generic jQuery plugin.</p>
]]>
    </content>
    <published>2009-05-05T16:50:21Z</published>
    <updated>2009-05-05T16:50:21Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163143</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163143" />
    <title>Comment from Danny Foo on 2009-05-12</title>
    <author>
        <name>Danny Foo</name>
<!--        <uri>http://www.dannyfoo.com/blog</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.dannyfoo.com/blog">
	<![CDATA[<p>I noticed you now assigned the path of macFFBgHack and loadingImage into the thickbox.js and a global JS file.</p>

<p>I'm not a programmer so I'd like to know; why is there a need to assign the image path in both JS files now?</p>

<p>BTW, your comment form kept saying I needed to input my email and URL when I've already did - in Chrome.</p>
]]>
    </content>
    <published>2009-05-12T11:03:07Z</published>
    <updated>2009-05-12T11:03:07Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163144</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163144" />
    <title>Comment from Byrne on 2009-05-12</title>
    <author>
        <name>Byrne</name>
<!--        <uri>http://www.majordojo.com/</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.majordojo.com/">
	<![CDATA[<p>There should be no need to specify the paths to the loadingImage and macFFBgHack directly in the javascript files anymore. You should specify those only through the allotted configuration parameters.</p>
]]>
    </content>
    <published>2009-05-12T14:10:25Z</published>
    <updated>2009-05-12T14:10:25Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163208</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163208" />
    <title>Comment from Kris Verheire on 2009-05-27</title>
    <author>
        <name>Kris Verheire</name>
<!--        <uri>http://www.reference.be</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.reference.be">
	<![CDATA[<p>How can I use this upgrade to load a thickbox when my page is fully loaded ?</p>

<p>I used to simply do :</p>

<p>$(document).ready(function(){
tb_show('title','myUrl',null);
}</p>

<p>this no longer seems to work.</p>
]]>
    </content>
    <published>2009-05-27T12:01:41Z</published>
    <updated>2009-05-27T12:01:41Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163209</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163209" />
    <title>Comment from Byrne on 2009-05-27</title>
    <author>
        <name>Byrne</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>This is how that function call will translate to the new system:</p>

<pre>$(document).ready(function(){ 
  tb_show('title','myUrl',null); 
});
</pre>

<p>Becomes:</p>

<pre>$(document).ready(function() {
  $(a.thickbox).thickbox({
  });
});
</pre>

<p>This will trigger the thickbox when you click the a link with a class of thickbox. Are you trying to trigger it on page load?</p>
]]>
    </content>
    <published>2009-05-27T15:16:15Z</published>
    <updated>2009-05-27T15:16:15Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163210</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163210" />
    <title>Comment from Mike on 2009-05-27</title>
    <author>
        <name>Mike</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>I am having the same problem with triggering the thickbox on page load.</p>

<p>How would I be able to do this using the new system?</p>
]]>
    </content>
    <published>2009-05-27T18:29:05Z</published>
    <updated>2009-05-27T18:29:05Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163211</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163211" />
    <title>Comment from Matt on 2009-05-27</title>
    <author>
        <name>Matt</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>The iframe portion doesnt work. Its trying to call tb_showIframe but cannot find the function.  </p>
]]>
    </content>
    <published>2009-05-27T18:31:42Z</published>
    <updated>2009-05-27T18:31:42Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163224</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163224" />
    <title>Comment from Mike on 2009-05-29</title>
    <author>
        <name>Mike</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>So is there any way to get this to work with iframe content and to get it to work on load?</p>
]]>
    </content>
    <published>2009-05-29T14:13:16Z</published>
    <updated>2009-05-29T14:13:16Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163353</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163353" />
    <title>Comment from Hussain on 2009-06-16</title>
    <author>
        <name>Hussain</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>Does not work on IE7 or IE8, almost 30% of the lower part of the thickbox window is not visible, even if you scroll down it will not appear...</p>
]]>
    </content>
    <published>2009-06-17T01:40:24Z</published>
    <updated>2009-06-17T01:40:24Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163591</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163591" />
    <title>Comment from Andy on 2009-07-09</title>
    <author>
        <name>Andy</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>I can't seem to get this to work after replacing the .js file and .css file from thickbox 3.1.  Now it just follows the link and loads the target page (FF and IE).  Is this only for .php or can it also be used in .aspx pages?  My link is as follows:</p>

<p>&lt;a href="page.aspx?height=600&amp;width=950&amp;modal=true" class="thickbox" title=""&gt;  Test &lt;/a&gt;</p>

<p>If this is wrong, could you post an example usage?</p>
]]>
    </content>
    <published>2009-07-09T19:42:25Z</published>
    <updated>2009-07-09T19:42:25Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:163747</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c163747" />
    <title>Comment from water meter on 2009-08-02</title>
    <author>
        <name>water meter</name>
<!--        <uri>http://www.allwatermeter.com/</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.allwatermeter.com/">
	<![CDATA[<p>Thanks for pointing out the problem</p>
]]>
    </content>
    <published>2009-08-03T02:09:34Z</published>
    <updated>2009-08-03T02:09:34Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:165883</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c165883" />
    <title>Comment from Tim Hobbs on 2009-10-15</title>
    <author>
        <name>Tim Hobbs</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>I too was having the issue with the iframe not working. The problem is that the iframe has an onload event attached that calls the tb_showIframe() function. Since the functions are all wrapped up in the plugin this caanot be called.</p>

<p>To fix the problem make the following change (approx. line 222):</p>

<p>} else if (settings.iframe) {
    tb<em>position();
    tb</em>showIframe();
}</p>

<p>You can remove the "Safari fix" part, as it is basically doing the same thing as tb_showIframe() anyway.</p>

<p>I attached an updated zip with the changes to the ticket for this bug. If you want, go grab it:
<a href="http://majordojo.lighthouseapp.com/projects/33302/tickets/4-thickbox-byrne-issue-error-on-modal-iframe" rel="nofollow">http://majordojo.lighthouseapp.com/projects/33302/tickets/4-thickbox-byrne-issue-error-on-modal-iframe</a></p>
]]>
    </content>
    <published>2009-10-15T15:41:59Z</published>
    <updated>2009-10-15T15:41:59Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:165884</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c165884" />
    <title>Comment from Tim Hobbs on 2009-10-15</title>
    <author>
        <name>Tim Hobbs</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>Woops. Looks like the js layout got chewed up. Grab the updated zip for the proper fix.</p>
]]>
    </content>
    <published>2009-10-15T15:43:27Z</published>
    <updated>2009-10-15T15:43:27Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:167071</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c167071" />
    <title>Comment from John Larysz on 2010-01-07</title>
    <author>
        <name>John Larysz</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>This doesn't solve my main gripe with thickbox.  The most basic operation is to flash up an image in the middle of the screen, with html like:</p>

<p><a href="FullImage.jpg" rel="nofollow"></a></p>

<p>If this code happens to be at the bottom of a long page - more than a scroll down - then the full image pops up at the top of the page - where the user has to scroll up to look for it.</p>

<p>Is there a solution to this?</p>
]]>
    </content>
    <published>2010-01-07T14:56:16Z</published>
    <updated>2010-01-07T14:56:16Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:167072</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c167072" />
    <title>Comment from John Larysz on 2010-01-07</title>
    <author>
        <name>John Larysz</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>OK, I'm wrong. Something is messing with me, but it's not thickbox.</p>
]]>
    </content>
    <published>2010-01-07T17:23:48Z</published>
    <updated>2010-01-07T17:23:48Z</updated>
  </entry>

  <entry>
    <id>tag:www.majordojo.com,2009://3.14210-comment:167075</id>
    <thr:in-reply-to ref="tag:www.majordojo.com,2009://3.14210" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php"/>
    <link rel="alternate" type="text/html" href="http://www.majordojo.com/2009/05/an-upgrade-to-the-jquery-thickbox-plugin.php#c167075" />
    <title>Comment from John Larysz on 2010-01-07</title>
    <author>
        <name>John Larysz</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>It was the DTD. Ouch.</p>
]]>
    </content>
    <published>2010-01-07T17:53:27Z</published>
    <updated>2010-01-07T17:53:27Z</updated>
  </entry>

</feed>
