<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Hacking at 0300</title>
	<atom:link href="http://bililite.nfshost.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://bililite.nfshost.com/blog</link>
	<description>Thoughts on web design and programming from a very occasional volunteer webmaster</description>
	<lastBuildDate>Tue, 21 Feb 2012 15:34:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Updating timepickr by Danny</title>
		<link>http://bililite.nfshost.com/blog/2009/07/09/updating-timepickr/comment-page-1/#comment-15851</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Tue, 21 Feb 2012 15:34:25 +0000</pubDate>
		<guid isPermaLink="false">http://bililite.nfshost.com/blog/?p=1009#comment-15851</guid>
		<description>@John Doe:
use &lt;code&gt;resetOnBlur: false&lt;/code&gt;
Danny</description>
		<content:encoded><![CDATA[<p>@John Doe:<br />
use <code>resetOnBlur: false</code><br />
Danny</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updating timepickr by John Doe</title>
		<link>http://bililite.nfshost.com/blog/2009/07/09/updating-timepickr/comment-page-1/#comment-15848</link>
		<dc:creator>John Doe</dc:creator>
		<pubDate>Tue, 21 Feb 2012 14:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://bililite.nfshost.com/blog/?p=1009#comment-15848</guid>
		<description>Oh joy, it works now! =^-^=
Thank you very much. Sorry for the dumb mistakes I made but after some hours I went just code-blind. ;)
Now is there a way to have the user input the time by keyboard without interfeing with the timepicker?</description>
		<content:encoded><![CDATA[<p>Oh joy, it works now! =^-^=<br />
Thank you very much. Sorry for the dumb mistakes I made but after some hours I went just code-blind. <img src='http://bililite.nfshost.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <br />
Now is there a way to have the user input the time by keyboard without interfeing with the timepicker?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updating timepickr by Danny</title>
		<link>http://bililite.nfshost.com/blog/2009/07/09/updating-timepickr/comment-page-1/#comment-15791</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Mon, 20 Feb 2012 18:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://bililite.nfshost.com/blog/?p=1009#comment-15791</guid>
		<description>@John Doe:
You&#039;ve got a whole bunch of typos/errors in your code:
&lt;ol&gt;
&lt;li&gt;script tags are not closed. They have to be &lt;code class=&quot;language-html&quot;&gt;&lt;script src=&quot;whatever&quot;&gt;&lt;/script&gt;&lt;/li&gt;
&lt;li&gt;Use the most up-to-date versions of the library, jQuery 1.7 and jQuery UI 1.8 (the css doesn&#039;t matter so much; I&#039;m still using the 1.7 Smoothness theme)&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;:eq()&lt;/code&gt; selector starts from zero, so &lt;code&gt;:eq(1)&lt;/code&gt; won&#039;t select anything&lt;/li&gt;
&lt;/ul&gt;
Try the following:
&lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&lt;html&gt;
&lt;head&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/smoothness/jquery-ui.css&quot; /&gt;

&lt;script src=&quot;http://code.jquery.com/jquery-1.7.1.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.js&quot;&gt;&lt;/script&gt;

&lt;script src=&quot;http://bililite.nfshost.com/inc/jquery.timepickr.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;input class=&quot;timepickr-example&quot;/&gt;

&lt;script type=&quot;text/javascript&quot;&gt;
$(&#039;.timepickr-example:eq(0)&#039;).timepickr({
convention: 24,
format: &#039;{h}:{m}&#039;,
hoverIntent: false
});
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@John Doe:<br />
You&#8217;ve got a whole bunch of typos/errors in your code:</p>
<ol>
<li>script tags are not closed. They have to be <code class="language-html">&lt;script src="whatever"&gt;&lt;/script&gt;</code></li>
<li>Use the most up-to-date versions of the library, jQuery 1.7 and jQuery UI 1.8 (the css doesn't matter so much; I'm still using the 1.7 Smoothness theme)</li>
<li>The <code>:eq()</code> selector starts from zero, so <code>:eq(1)</code> won't select anything</li>

<p>Try the following:</p>
<pre><code class="language-html">&lt;html&gt;
&lt;head&gt;
&lt;link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/smoothness/jquery-ui.css" /&gt;

&lt;script src="http://code.jquery.com/jquery-1.7.1.js"&gt;&lt;/script&gt;
&lt;script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.js"&gt;&lt;/script&gt;

&lt;script src="http://bililite.nfshost.com/inc/jquery.timepickr.js"&gt;&lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;input class="timepickr-example"/&gt;

&lt;script type="text/javascript"&gt;
$('.timepickr-example:eq(0)').timepickr({
convention: 24,
format: '{h}:{m}',
hoverIntent: false
});
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</code></pre>
</ol>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updating timepickr by John Doe</title>
		<link>http://bililite.nfshost.com/blog/2009/07/09/updating-timepickr/comment-page-1/#comment-15786</link>
		<dc:creator>John Doe</dc:creator>
		<pubDate>Mon, 20 Feb 2012 16:02:44 +0000</pubDate>
		<guid isPermaLink="false">http://bililite.nfshost.com/blog/?p=1009#comment-15786</guid>
		<description>I just can’t get this to work. Not after one full hour of twiddling and hacking.
 PLEASE have a ultra minimalistic example somewhere, please please please.

This doesn’t work and I can not figure out why:

[html]
[head]
    [link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/smoothness/jquery-ui.css&quot; /]

    [script src=&quot;http://code.jquery.com/jquery-1.4.2.min.js&quot;[/script]
    [script src=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js&quot;[/script]
    [script src=&quot;http://jquery-ui.googlecode.com/svn/trunk/ui/jquery.ui.widget.js&quot;[/script]

    [script src=&quot;http://bililite.nfshost.com/jquery.timepickr.js&quot; /]
[/head]


[body]
    [input class=&quot;timepickr-example&quot;/]

    [script type=&quot;text/javascript&quot;]
        $(&#039;.timepickr-example:eq(1)&#039;).timepickr({
          convention: 24,
          format: &#039;{h}:{m}&#039;,
          hoverIntent: false
        });
    [/script]
[/body]
[/html]</description>
		<content:encoded><![CDATA[<p>I just can’t get this to work. Not after one full hour of twiddling and hacking.<br />
 PLEASE have a ultra minimalistic example somewhere, please please please.</p>
<p>This doesn’t work and I can not figure out why:</p>
<p>[html]<br />
[head]<br />
    [link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/smoothness/jquery-ui.css" /]</p>
<p>    [script src="http://code.jquery.com/jquery-1.4.2.min.js"[/script]<br />
    [script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"[/script]<br />
    [script src="http://jquery-ui.googlecode.com/svn/trunk/ui/jquery.ui.widget.js"[/script]</p>
<p>    [script src="http://bililite.nfshost.com/jquery.timepickr.js" /]<br />
[/head]</p>
<p>[body]<br />
    [input class="timepickr-example"/]</p>
<p>    [script type="text/javascript"]<br />
        $(&#8216;.timepickr-example:eq(1)&#8217;).timepickr({<br />
          convention: 24,<br />
          format: &#8216;{h}:{m}&#8217;,<br />
          hoverIntent: false<br />
        });<br />
    [/script]<br />
[/body]<br />
[/html]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cross-Browser Text Ranges and Selections by Danny</title>
		<link>http://bililite.nfshost.com/blog/2011/01/17/cross-browser-text-ranges-and-selections/comment-page-1/#comment-14529</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Fri, 03 Feb 2012 05:24:12 +0000</pubDate>
		<guid isPermaLink="false">http://bililite.nfshost.com/blog/?p=1404#comment-14529</guid>
		<description>@Hadar:
I&#039;m not sure what you mean. I&#039;m getting the text inserted correctly with the code as is. What browser are you using?
--Danny</description>
		<content:encoded><![CDATA[<p>@Hadar:<br />
I&#8217;m not sure what you mean. I&#8217;m getting the text inserted correctly with the code as is. What browser are you using?<br />
&#8211;Danny</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cross-Browser Text Ranges and Selections by Hadar</title>
		<link>http://bililite.nfshost.com/blog/2011/01/17/cross-browser-text-ranges-and-selections/comment-page-1/#comment-14480</link>
		<dc:creator>Hadar</dc:creator>
		<pubDate>Thu, 02 Feb 2012 12:33:17 +0000</pubDate>
		<guid isPermaLink="false">http://bililite.nfshost.com/blog/?p=1404#comment-14480</guid>
		<description>thanks for the great plugin.
I found a bug though, where it was inserting the text only to the begining of the contenteditable div.
the textProp function should have the line &quot;el.text&quot; removed, since el.text is not related to the content but rather to the color.
removing the line solved the issue.</description>
		<content:encoded><![CDATA[<p>thanks for the great plugin.<br />
I found a bug though, where it was inserting the text only to the begining of the contenteditable div.<br />
the textProp function should have the line &#8220;el.text&#8221; removed, since el.text is not related to the content but rather to the color.<br />
removing the line solved the issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking My Way to an Amazon Wishlist Widget by Searching your Amazon.com Wish List &#171; Code In Chinese</title>
		<link>http://bililite.nfshost.com/blog/2010/10/31/hacking-my-way-to-an-amazon-wishlist-widget/comment-page-1/#comment-14201</link>
		<dc:creator>Searching your Amazon.com Wish List &#171; Code In Chinese</dc:creator>
		<pubDate>Wed, 25 Jan 2012 18:52:47 +0000</pubDate>
		<guid isPermaLink="false">http://bililite.nfshost.com/blog/?p=1227#comment-14201</guid>
		<description>[...] recently removed wish list querying methods from their API. Bummer. Then I came upon this post. http://bililite.nfshost.com/blog/2010/10/31/hacking-my-way-to-an-amazon-wishlist-widget/ . The solution is the layout=compact URL [...]</description>
		<content:encoded><![CDATA[<p>[...] recently removed wish list querying methods from their API. Bummer. Then I came upon this post. <a href="http://bililite.nfshost.com/blog/2010/10/31/hacking-my-way-to-an-amazon-wishlist-widget/" rel="nofollow">http://bililite.nfshost.com/blog/2010/10/31/hacking-my-way-to-an-amazon-wishlist-widget/</a> . The solution is the layout=compact URL [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery CSS parser by Hacking at 0300 : jQuery CSS parser - EtondeGroup Blog of Web Applications &#124; EtondeGroup Blog of Web Applications</title>
		<link>http://bililite.nfshost.com/blog/2009/01/16/jquery-css-parser/comment-page-1/#comment-13720</link>
		<dc:creator>Hacking at 0300 : jQuery CSS parser - EtondeGroup Blog of Web Applications &#124; EtondeGroup Blog of Web Applications</dc:creator>
		<pubDate>Fri, 13 Jan 2012 12:39:50 +0000</pubDate>
		<guid isPermaLink="false">http://bililite.nfshost.com/blog/?p=251#comment-13720</guid>
		<description>[...] more here: Hacking at 0300 : jQuery CSS parser  Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers [...]</description>
		<content:encoded><![CDATA[<p>[...] more here: Hacking at 0300 : jQuery CSS parser  Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Back to a Simple Google Search Form by Nick Lachey</title>
		<link>http://bililite.nfshost.com/blog/2011/02/23/back-to-a-simple-google-search-form/comment-page-1/#comment-13614</link>
		<dc:creator>Nick Lachey</dc:creator>
		<pubDate>Wed, 11 Jan 2012 13:04:25 +0000</pubDate>
		<guid isPermaLink="false">http://bililite.nfshost.com/blog/?p=1607#comment-13614</guid>
		<description>Nice post. I found this blog with with best practices for creating a search form that is quick and easy to use      http://blog.caspio.com/web-database/7-tips-for-creating-user-friendly-search-forms/</description>
		<content:encoded><![CDATA[<p>Nice post. I found this blog with with best practices for creating a search form that is quick and easy to use      <a href="http://blog.caspio.com/web-database/7-tips-for-creating-user-friendly-search-forms/" rel="nofollow">http://blog.caspio.com/web-database/7-tips-for-creating-user-friendly-search-forms/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsing the HTTP Accept: header by Parsing the HTTP Accept: header</title>
		<link>http://bililite.nfshost.com/blog/2010/01/06/parsing-the-http-accept-header/comment-page-1/#comment-13243</link>
		<dc:creator>Parsing the HTTP Accept: header</dc:creator>
		<pubDate>Sat, 31 Dec 2011 05:53:30 +0000</pubDate>
		<guid isPermaLink="false">http://bililite.nfshost.com/blog/?p=1126#comment-13243</guid>
		<description>[...] http://bililite.nfshost.com/blog/2010/01/06/parsing-the-http-accept-header/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://bililite.nfshost.com/blog/2010/01/06/parsing-the-http-accept-header/" rel="nofollow">http://bililite.nfshost.com/blog/2010/01/06/parsing-the-http-accept-header/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

