<?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 on: JavaScript CSS Parser for Custom Properties</title>
	<atom:link href="http://frontendbook.com/javascript-css-parser-for-custom-properties/feed" rel="self" type="application/rss+xml" />
	<link>http://frontendbook.com/javascript-css-parser-for-custom-properties</link>
	<description>In depth analysis on Web Development, User Experience and Web 2.0</description>
	<lastBuildDate>Sun, 22 Aug 2010 16:00:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0-beta2</generator>
	<item>
		<title>By: Daniel Glazman</title>
		<link>http://frontendbook.com/javascript-css-parser-for-custom-properties#comment-443</link>
		<dc:creator>Daniel Glazman</dc:creator>
		<pubDate>Fri, 12 Mar 2010 08:35:45 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=181#comment-443</guid>
		<description>Or you can use my own parser (warning, work in progress)
http://sources.disruptive-innovations.com/jscssp/</description>
		<content:encoded><![CDATA[<p>Or you can use my own parser (warning, work in progress)<br />
<a href="http://sources.disruptive-innovations.com/jscssp/" rel="nofollow">http://sources.disruptive-innovations.com/jscssp/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ehsan</title>
		<link>http://frontendbook.com/javascript-css-parser-for-custom-properties#comment-442</link>
		<dc:creator>Ehsan</dc:creator>
		<pubDate>Tue, 21 Apr 2009 10:28:30 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=181#comment-442</guid>
		<description>hi ..
i wanna do this wihin .Net framework or JavaScript Programming .. without using any JavaScript Library !
any one hv idea about this ?</description>
		<content:encoded><![CDATA[<p>hi ..<br />
i wanna do this wihin .Net framework or JavaScript Programming .. without using any JavaScript Library !<br />
any one hv idea about this ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mattias Hising</title>
		<link>http://frontendbook.com/javascript-css-parser-for-custom-properties#comment-440</link>
		<dc:creator>Mattias Hising</dc:creator>
		<pubDate>Wed, 14 Jan 2009 08:44:36 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=181#comment-440</guid>
		<description>Great! I will check it out, what do you think of going open source on Github or Google Code?</description>
		<content:encoded><![CDATA[<p>Great! I will check it out, what do you think of going open source on Github or Google Code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Wachsstock</title>
		<link>http://frontendbook.com/javascript-css-parser-for-custom-properties#comment-438</link>
		<dc:creator>Daniel Wachsstock</dc:creator>
		<pubDate>Wed, 14 Jan 2009 07:06:03 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=181#comment-438</guid>
		<description>I got the CSS parser working (FF 3, IE 7, Safari 3, Opera 9, all under Windows Vista). No real documentation yet, but you can see it in action at
http://youngisrael-stl.org/wordpress/blogfiles/cssparser/cssparsertest.php

with the Javascript code in
http://youngisrael-stl.org/inc/jquery.cssparser.js

You can do things like
h1 {
  -jquery-gradient: white blue vertical;
  -jquery-corners: round 10pt;
}

and it is livequery-aware, so it can keep up with changes in the DOM</description>
		<content:encoded><![CDATA[<p>I got the CSS parser working (FF 3, IE 7, Safari 3, Opera 9, all under Windows Vista). No real documentation yet, but you can see it in action at<br />
<a href="http://youngisrael-stl.org/wordpress/blogfiles/cssparser/cssparsertest.php" rel="nofollow">http://youngisrael-stl.org/wordpress/blogfiles/cssparser/cssparsertest.php</a></p>
<p>with the Javascript code in<br />
<a href="http://youngisrael-stl.org/inc/jquery.cssparser.js" rel="nofollow">http://youngisrael-stl.org/inc/jquery.cssparser.js</a></p>
<p>You can do things like<br />
h1 {<br />
  -jquery-gradient: white blue vertical;<br />
  -jquery-corners: round 10pt;<br />
}</p>
<p>and it is livequery-aware, so it can keep up with changes in the DOM</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mattias Hising</title>
		<link>http://frontendbook.com/javascript-css-parser-for-custom-properties#comment-439</link>
		<dc:creator>Mattias Hising</dc:creator>
		<pubDate>Sat, 03 Jan 2009 09:04:53 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=181#comment-439</guid>
		<description>Malih and Daniel, thanks for the great input. Both scripts look interesting. Actually the idea started partly from Dean Edwards IE7 script, but I am not sure whether or not is a generic solution easily adaptable for all major browser vendors, should look into that as well.</description>
		<content:encoded><![CDATA[<p>Malih and Daniel, thanks for the great input. Both scripts look interesting. Actually the idea started partly from Dean Edwards IE7 script, but I am not sure whether or not is a generic solution easily adaptable for all major browser vendors, should look into that as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Wachsstock</title>
		<link>http://frontendbook.com/javascript-css-parser-for-custom-properties#comment-436</link>
		<dc:creator>Daniel Wachsstock</dc:creator>
		<pubDate>Fri, 02 Jan 2009 21:34:23 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=181#comment-436</guid>
		<description>I had the same thought and came up with this:
http://youngisrael-stl.org/wordpress/blogfiles/cssparser/cssparser.jquery.js
You can see it discussed at
http://youngisrael-stl.org/wordpress/2007/10/19/css-parser-in-javascript/
though I haven&#039;t worked on it a while. Help would be appreciated.

I found this blog entry because I&#039;m thinking about it again and googled to see if anyone else did it. For a real sophisticated take, look at Dean Edward&#039;s ie7.js (http://code.google.com/p/ie7-js/).</description>
		<content:encoded><![CDATA[<p>I had the same thought and came up with this:<br />
<a href="http://youngisrael-stl.org/wordpress/blogfiles/cssparser/cssparser.jquery.js" rel="nofollow">http://youngisrael-stl.org/wordpress/blogfiles/cssparser/cssparser.jquery.js</a><br />
You can see it discussed at<br />
<a href="http://youngisrael-stl.org/wordpress/2007/10/19/css-parser-in-javascript/" rel="nofollow">http://youngisrael-stl.org/wordpress/2007/10/19/css-parser-in-javascript/</a><br />
though I haven&#8217;t worked on it a while. Help would be appreciated.</p>
<p>I found this blog entry because I&#8217;m thinking about it again and googled to see if anyone else did it. For a real sophisticated take, look at Dean Edward&#8217;s ie7.js (<a href="http://code.google.com/p/ie7-js/" rel="nofollow">http://code.google.com/p/ie7-js/</a>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Malih</title>
		<link>http://frontendbook.com/javascript-css-parser-for-custom-properties#comment-437</link>
		<dc:creator>Malih</dc:creator>
		<pubDate>Tue, 30 Dec 2008 06:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=181#comment-437</guid>
		<description>There&#039;s some I found while looking for Javascript based CSS parser too, haven&#039;t tried it yet though, you might be interested, http://www.senocular.com/index.php?id=1.289</description>
		<content:encoded><![CDATA[<p>There&#8217;s some I found while looking for Javascript based CSS parser too, haven&#8217;t tried it yet though, you might be interested, <a href="http://www.senocular.com/index.php?id=1.289" rel="nofollow">http://www.senocular.com/index.php?id=1.289</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
