<?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>macaroni-works notes&#187; empty</title>
	<atom:link href="http://blog.macaroniworks.net/tag/empty/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.macaroniworks.net</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 16 Feb 2011 07:27:11 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>PHP emptyか。</title>
		<link>http://blog.macaroniworks.net/2009/10/php-empty%e3%81%8b%e3%80%82/</link>
		<comments>http://blog.macaroniworks.net/2009/10/php-empty%e3%81%8b%e3%80%82/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 09:39:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[empty]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=974</guid>
		<description><![CDATA[Google Analyticsのモバイル用phpのコードに 以下のようなコードがありました。 if (empty($referer)) { $referer = "-"; } emptyってあったので。]]></description>
			<content:encoded><![CDATA[<p>Google Analyticsのモバイル用phpのコードに<br />
以下のようなコードがありました。</p>
<pre class="brush:as3">
if (empty($referer)) {
  $referer = "-";
}
</pre>
<p>emptyってあったので。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2009/10/php-empty%e3%81%8b%e3%80%82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery セレクタで:not()を使う事に</title>
		<link>http://blog.macaroniworks.net/2009/08/jquery-%e3%82%bb%e3%83%ac%e3%82%af%e3%82%bf%e3%81%a7not%e3%82%92%e4%bd%bf%e3%81%86%e4%ba%8b%e3%81%ab/</link>
		<comments>http://blog.macaroniworks.net/2009/08/jquery-%e3%82%bb%e3%83%ac%e3%82%af%e3%82%bf%e3%81%a7not%e3%82%92%e4%bd%bf%e3%81%86%e4%ba%8b%e3%81%ab/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 09:46:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Selectors]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[empty]]></category>
		<category><![CDATA[not]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=628</guid>
		<description><![CDATA[カレンダーで、未来のtdには.future、データが見つからないものには.notfound というクラスを適用していましたが JQueryにてbackground-imageを変える際、このクラスには適用したくなかったので。 普通です。 $("#calendar td:not(.notfound,.future)").hover( function(){$(this).css("background-image","url(images/hover.png)"}, function(){$(this).css("background-image","url(images/normal.png)"} ); さらに空白のタグも選びたくない場合 $("#calendar td:not(.notfound,.future,:empty)") としたら出来ました。 :not()の中に:emptyがあって、不思議です。]]></description>
			<content:encoded><![CDATA[<p>カレンダーで、未来のtdには.future、データが見つからないものには.notfound<br />
というクラスを適用していましたが<br />
JQueryにてbackground-imageを変える際、このクラスには適用したくなかったので。<br />
普通です。</p>
<pre class="brush:as3">
$("#calendar td:not(.notfound,.future)").hover(
 function(){$(this).css("background-image","url(images/hover.png)"},
 function(){$(this).css("background-image","url(images/normal.png)"}
);
</pre>
<p>さらに空白のタグも選びたくない場合</p>
<pre class="brush:as3">
$("#calendar td:not(.notfound,.future,:empty)")
</pre>
<p>としたら出来ました。</p>
<p>:not()の中に:emptyがあって、不思議です。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2009/08/jquery-%e3%82%bb%e3%83%ac%e3%82%af%e3%82%bf%e3%81%a7not%e3%82%92%e4%bd%bf%e3%81%86%e4%ba%8b%e3%81%ab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

