<?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>Lost within &#187; Web Design</title>
	<atom:link href="http://lostwithin.net/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostwithin.net</link>
	<description>Alaa Abdelhaq Blog</description>
	<lastBuildDate>Tue, 27 Oct 2009 15:00:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Check if a radion button is checked using jquery</title>
		<link>http://lostwithin.net/check-if-a-radion-button-is-checked-using-jquery/</link>
		<comments>http://lostwithin.net/check-if-a-radion-button-is-checked-using-jquery/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 13:54:32 +0000</pubDate>
		<dc:creator>Alaa Abdelhaq</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[checked]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[radio button]]></category>

		<guid isPermaLink="false">http://lostwithin.net/?p=150</guid>
		<description><![CDATA[let say you have a group of radio buttons sharing the same name attribute for sure, and upon submit or some event you want to check if one of these radio buttons was checked or not. you can do this simply by the following code. $&#40;document&#41;.ready&#40;function&#40;&#41;&#123; $&#40;'#submit_button'&#41;.click&#40;function&#40;&#41; &#123; if &#40;!$&#40;&#34;input[@name='name']:checked&#34;&#41;.val&#40;&#41;&#41; &#123; alert&#40;'Nothing is checked!'&#41;; return [...]]]></description>
			<content:encoded><![CDATA[<p>let say you have a group of radio buttons sharing the same name attribute for sure, and upon submit or some event you want to check if one of these radio buttons was checked or not.<br />
you can do this simply by the following code.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#submit_button'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;input[@name='name']:checked&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
       <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Nothing is checked!'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'One of the radio buttons is checked!'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>hope this will help you <img src='http://lostwithin.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://lostwithin.net/check-if-a-radion-button-is-checked-using-jquery/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How your site looks in other browsers??</title>
		<link>http://lostwithin.net/how-your-site-looks-in-other-browsers/</link>
		<comments>http://lostwithin.net/how-your-site-looks-in-other-browsers/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 14:13:51 +0000</pubDate>
		<dc:creator>Alaa Abdelhaq</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[bounce rate]]></category>
		<category><![CDATA[browsers compatibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[decrease]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://lostwithin.net/?p=71</guid>
		<description><![CDATA[Sometimes working on web design may not be as easy as you think. Specially when it comes to browsers compatibility. things get tricky and difficult with the lack of HTML CSS and Javascript debuggers like firebug on other browsers specially IE! plus you are working under your favorite OS, so it gets harder to test [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes working on web design may not be as easy as you think.<br />
Specially when it comes to browsers compatibility.<br />
things get tricky and difficult with the lack of HTML CSS and Javascript debuggers like firebug on<br />
other browsers specially IE!<br />
plus you are working under your favorite OS, so it gets harder to test your work on different browsers and different platforms?<br />
By surfing the web I came by chance with this incredible website <a title="CLICK HERE :)" href="http://browsershots.org/" target="_blank">LINK</a><br />
How it helps you?<br />
simply click on the link place your website address<br />
then check the browsers you want to check under different platforms.<br />
next you can put some rules like the preferred resolution you want the test to be ran under.<br />
then you submit it.<br />
Next the website will show you exactly how your website will look on the selected browsers.<br />
it will get you results as a png images, yes images!<br />
maybe some people wont like the service, for me if I was able to check exactly how my website looks on each browser that would be great, and maybe helps me to decrease bounce rate <img src='http://lostwithin.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>give it a try <img src='http://lostwithin.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://lostwithin.net/how-your-site-looks-in-other-browsers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
