<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" version="2.0">

<channel>
	<title>onehackoranother.com</title>
	
	<link>http://onehackoranother.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sat, 18 Oct 2008 00:45:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/ohoa" type="application/rss+xml" /><item>
		<title>jQuery Javascript Console Bookmarklet</title>
		<link>http://onehackoranother.com/2008/10/jquery-javascript-console-bookmarklet/</link>
		<comments>http://onehackoranother.com/2008/10/jquery-javascript-console-bookmarklet/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 19:39:46 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[bookmarklet]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://onehackoranother.com/?p=30</guid>
		<description><![CDATA[jQuery console is a short bookmarklet that, when activated, loads jQuery into the current page (from Google&#8217;s hosted AJAX libraries) then overlays an interactive Javascript console permitting the evaluation of arbitrary expressions. Successive clicks will toggle the console&#8217;s visibility. It&#8217;s useful for using jQuery to quickly manipulate pages that don&#8217;t already include the library or [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery console is a short bookmarklet that, when activated, loads jQuery into the current page (from Google&#8217;s <a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery">hosted AJAX libraries</a>) then overlays an interactive Javascript console permitting the evaluation of arbitrary expressions. Successive clicks will toggle the console&#8217;s visibility. It&#8217;s useful for using jQuery to quickly manipulate pages that don&#8217;t already include the library or for adding rudimentary console features to browsers other than Firefox.</p>
<p><span id="more-30"></span>Quick action shot:</p>
<p><a href="http://onehackoranother.com/wp-content/uploads/2008/10/jquery-console.png"><img class="aligncenter size-medium wp-image-32" title="jquery-console" src="http://onehackoranother.com/wp-content/uploads/2008/10/jquery-console-300x171.png" alt="" width="300" height="171" /></a></p>
<p>WordPress doesn&#8217;t seem to let me paste the code inline so you&#8217;ll need to click the link below then drag the jQuery console link into your bookmarks bar:</p>
<p><a href="/projects/jquery/jquery-console.html">jQuery console download page</a></p>
<p>As usual, sources at <a href="http://github.com/jaz303/jquery-console/tree/master">github</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://onehackoranother.com/2008/10/jquery-javascript-console-bookmarklet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>boxy 0.1.4</title>
		<link>http://onehackoranother.com/2008/09/boxy-014/</link>
		<comments>http://onehackoranother.com/2008/09/boxy-014/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 00:17:20 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[boxy]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[modal]]></category>

		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://onehackoranother.com/?p=29</guid>
		<description><![CDATA[Somewhat delayed but hopefully worth the wait, boxy 0.1.4 is ready. Boxy is a Facebook-style dialog library for jQuery with a rich API for manipulating windows. It&#8217;s also pretty well documented.
Changelog:

Fixed issue with multiple visible modals
Moved modal opacity value from CSS to code to appease IE (not ideal)
Moved default options to Boxy.DEFAULTS for application-wide configurability
Added [...]]]></description>
			<content:encoded><![CDATA[<p>Somewhat delayed but hopefully worth the wait, boxy 0.1.4 is ready. Boxy is a Facebook-style dialog library for jQuery with a rich API for manipulating windows. It&#8217;s also pretty well documented.</p>
<p>Changelog:</p>
<ol>
<li>Fixed issue with multiple visible modals</li>
<li>Moved modal opacity value from CSS to code to appease IE (not ideal)</li>
<li>Moved default options to Boxy.DEFAULTS for application-wide configurability</li>
<li>Added custom callback for attaching behaviours to dialog content</li>
<li>Added Boxy.alert() for displaying simple messages</li>
<li>Added Boxy.confirm() helper</li>
<li>Added support for unloading/removing boxy instances: boxy.unload(), boxy.hideAndUnload(after), constructor option &#8216;unloadOnHide&#8217;</li>
<li>Boxys created with Boxy.ask() or its derivatives now unload themselves on dismissal</li>
<li>Fixed centering issue in IE6 (non-standards compliant mode)</li>
<li>Added afterShow callback, fired whenever boxy becomes visible</li>
<li>Added Boxy.load() for manually loading boxy content via AJAX</li>
<li>Moved WRAPPER to from Boxy.prototype to Boxy to improve app-wide configurability</li>
<li>Complete rewrite of $.fn.boxy; see elsewhere for explanation</li>
<li>Removed &#8217;single&#8217; plugin option</li>
<li>Added option to link each boxy instance to the DOM element which triggered it; this is automatically severed when boxy is unloaded</li>
<li>Added option to filter AJAX content using jQuery selector</li>
<li>Fixed positioning bug with Opera</li>
<li>Added beforeUnload callback</li>
<li>Added Boxy.isModalVisible() for testing if a modal dialog is currently visible</li>
<li>Added afterHide callback</li>
<li>Added afterDrop callback</li>
<li>Modal shading now resizes with browser window</li>
<li>Added clickToFront option, bringing a dialog to front when clicking anywhere within it</li>
<li>Added Boxy.linkedTo() to get boxy instance linked to a given element via &#8216;actuator&#8217; option</li>
<li>Added boxy.toggle() to toggle between visible/hidden</li>
</ol>
<p>There&#8217;s also a new <a href="/projects/jquery/boxy/tests.html">test and examples page</a> that gives all of the major features a workout.</p>
<p>This will be the final release before 1.0; from now until then I&#8217;ll be concentrating solely on fixing bugs and stabilising the API. I think I&#8217;ve managed to accommodate most feature requests in one way or another.</p>
<p>Linkage: <a href="http://onehackoranother.com/projects/jquery/boxy/">project page</a> | <a href="http://github.com/jaz303/boxy/tree/master">github</a> | <a href="http://plugins.jquery.com/files/boxy-0.1.4.zip">direct download from plugins.jquery.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onehackoranother.com/2008/09/boxy-014/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Two quick jQuery plugins before bedtime</title>
		<link>http://onehackoranother.com/2008/09/two-quick-jquery-plugins-before-bedtime/</link>
		<comments>http://onehackoranother.com/2008/09/two-quick-jquery-plugins-before-bedtime/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 22:39:53 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://onehackoranother.com/?p=28</guid>
		<description><![CDATA[Just a couple of extractions from recent projects that may be useful to somebodies.
First up is an automatically growing textarea. This implementation is borrowed from Facebook and uses an off-screen auxiliary &#60;div&#62; to calculate the required dimensions of the textarea. Usage is simple:
Autogrowing textarea example:
$('textarea').autogrow();
Next is a cookie-based style switcher, the obvious use of which [...]]]></description>
			<content:encoded><![CDATA[<p>Just a couple of extractions from recent projects that may be useful to somebodies.</p>
<p>First up is an automatically growing textarea. This implementation is borrowed from Facebook and uses an off-screen auxiliary &lt;div&gt; to calculate the required dimensions of the textarea. Usage is simple:</p>
<div class='caption'>Autogrowing textarea example:</div>
<pre><code class='js'>$('textarea').autogrow();</code></pre>
<p>Next is a cookie-based style switcher, the obvious use of which is toggling between small/medium/large text. Quite why the browser supplied zoom features are insufficient is a mystery to me, but hey ho, the client is always right.</p>
<div class='caption'>Cookie-based style switcher example:</div>
<pre><code class='js'>cookieResize('#sizer a', 'medium');</code></pre>
<p>The first argument is a selector matching the resize/style-switching links. When the user clicks any of these its CSS class will be applied to document.body - this class name will also be stored in a cookie for retrieval on successive page views. The second argument is the default class to use if no cookie is present.</p>
<p>No official plugin pages for these; just copy and paste into your project&#8230;</p>
<p>Linkage: <a href="http://github.com/jaz303/jquery-grab-bag/tree/master/javascripts/jquery.autogrow-textarea.js">auto-growing textarea</a> | <a href="http://github.com/jaz303/jquery-grab-bag/tree/master/javascripts/jquery.cookie-text-size.js">cookie-based style switcher</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onehackoranother.com/2008/09/two-quick-jquery-plugins-before-bedtime/feed/</wfw:commentRss>
		</item>
		<item>
		<title>boxy 0.1.3 released</title>
		<link>http://onehackoranother.com/2008/08/boxy-013-released/</link>
		<comments>http://onehackoranother.com/2008/08/boxy-013-released/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 13:36:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[boxy]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[modal]]></category>

		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://onehackoranother.com/?p=27</guid>
		<description><![CDATA[I&#8217;m pleased to announce the release of boxy 0.1.3. This is mainly a bug-fix release but there are a couple of new features in there as well.
Changelog:

Fixed CSS class name in middle-bottom cell of wrapper markup
Pressing escape now closes modal dialogs (as long as dialog is closeable)
Added getter and setter for dialog title
Title text is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m pleased to announce the release of boxy 0.1.3. This is mainly a bug-fix release but there are a couple of new features in there as well.</p>
<p>Changelog:</p>
<ul>
<li>Fixed CSS class name in middle-bottom cell of wrapper markup</li>
<li>Pressing escape now closes modal dialogs (as long as dialog is closeable)</li>
<li>Added getter and setter for dialog title</li>
<li>Title text is now wrapped in &lt;h2&gt;&lt;/h2&gt;</li>
<li>Title parameter now works when passed to plugin</li>
<li>Close text is now configurable via closeText constructor parameter</li>
<li>Titlebar text is &#8220;unselectable&#8221; while dragging</li>
<li>Close event is rebound correctly if boxy has been cloned</li>
<li>Fixed bug where border would compress when dragged offscreen</li>
<li>Dialog can now be centered on a single dimension</li>
<li>Numerous code cleanups</li>
</ul>
<p>Linkage: <a href="http://onehackoranother.com/projects/jquery/boxy/">project page</a> | <a href="http://github.com/jaz303/boxy/tree/master">github</a> | <a href="http://plugins.jquery.com/files/boxy-0.1.3.zip">direct download from plugins.jquery.com</a></p>
<p>Thanks to everyone who submitted bug reports and patches.</p>
]]></content:encoded>
			<wfw:commentRss>http://onehackoranother.com/2008/08/boxy-013-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Boxy Google Group</title>
		<link>http://onehackoranother.com/2008/08/boxy-google-group/</link>
		<comments>http://onehackoranother.com/2008/08/boxy-google-group/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 19:42:56 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://onehackoranother.com/?p=26</guid>
		<description><![CDATA[Just a quick heads-up; a couple of people have enquired about a discussion place for Boxy so I&#8217;ve set up a new Google Group.
0.1.3 release is coming soon.
]]></description>
			<content:encoded><![CDATA[<p>Just a quick heads-up; a couple of people have enquired about a discussion place for Boxy so I&#8217;ve set up a <a href="http://groups.google.com/group/boxy-plugin">new Google Group</a>.</p>
<p>0.1.3 release is coming soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://onehackoranother.com/2008/08/boxy-google-group/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Boxing clever.</title>
		<link>http://onehackoranother.com/2008/06/boxing-clever/</link>
		<comments>http://onehackoranother.com/2008/06/boxing-clever/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 18:44:02 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[boxy]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://onehackoranother.com/?p=23</guid>
		<description><![CDATA[Today I have another jQuery plugin to unleash upon the bearded masses. Boxy is a Facebook-inspired dialog/overlay featuring animation, drag and drop and a comprehensive API for interacting with dialog instances. There&#8217;s also fairly detailed documentation.
Here&#8217;s a quick screenshot:

Visit the boxy project page for live examples and documentation, or download direct from the jQuery plugin [...]]]></description>
			<content:encoded><![CDATA[<p>Today I have another jQuery plugin to unleash upon the bearded masses. Boxy is a Facebook-inspired dialog/overlay featuring animation, drag and drop and a comprehensive API for interacting with dialog instances. There&#8217;s also fairly detailed documentation.</p>
<p>Here&#8217;s a quick screenshot:</p>
<p><a href="/projects/jquery/boxy/"><img class="alignnone size-full wp-image-24" title="boxy" src="http://onehackoranother.com/wp-content/uploads/2008/06/boxy.png" alt="" width="360" height="320" /></a></p>
<p>Visit the <a href="/projects/jquery/boxy/">boxy project page</a> for live examples and documentation, or download direct from the <a href="http://plugins.jquery.com/project/boxy">jQuery plugin page</a>. <a href="http://github.com/jaz303/boxy/tree/master">Sources at github</a>.</p>
<p><strong>Update:</strong> version 0.1.1 has been released; thanks to Robin Whittleton and Fabio Fedelix for their contributions. <a href="http://plugins.jquery.com/node/3107">View the release notes</a>.</p>
<p><strong>Another update:</strong> version 0.1.2 is hot off the platter. Support for fixed positioning plus another couple of IE bugs have been smited. <a href="http://plugins.jquery.com/node/3144">Relase notes here</a>; thanks again to Robin W for the patches.</p>
]]></content:encoded>
			<wfw:commentRss>http://onehackoranother.com/2008/06/boxing-clever/feed/</wfw:commentRss>
		</item>
		<item>
		<title>All Aboard</title>
		<link>http://onehackoranother.com/2008/06/all-aboard/</link>
		<comments>http://onehackoranother.com/2008/06/all-aboard/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 23:56:04 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://onehackoranother.com/?p=22</guid>
		<description><![CDATA[Greetings rapscallions.
Here are a couple of new jQuery plugins that have been lying about on the hard drive for a while, now tidied up and fit for thieving:

tipsy - Facebook-alike tooltips
droppy - nested drop-down menus

Enjoy your stay.
]]></description>
			<content:encoded><![CDATA[<p>Greetings rapscallions.</p>
<p>Here are a couple of new jQuery plugins that have been lying about on the hard drive for a while, now tidied up and fit for thieving:</p>
<ul>
<li><a href="/projects/jquery/tipsy/">tipsy</a> - Facebook-alike tooltips</li>
<li><a href="/projects/jquery/droppy/">droppy</a> - nested drop-down menus</li>
</ul>
<p>Enjoy your stay.</p>
]]></content:encoded>
			<wfw:commentRss>http://onehackoranother.com/2008/06/all-aboard/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
