<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>jquery-date-picker &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/jquery-date-picker/</link>
	<description>Feed of posts on WordPress.com tagged "jquery-date-picker"</description>
	<pubDate>Wed, 19 Jun 2013 23:29:26 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[jquery date of birth picker (text version)]]></title>
<link>http://203luv.wordpress.com/2011/08/03/jquery-date-of-birth-picker-text-version/</link>
<pubDate>Wed, 03 Aug 2011 16:14:05 +0000</pubDate>
<dc:creator>203luv</dc:creator>
<guid>http://203luv.wordpress.com/2011/08/03/jquery-date-of-birth-picker-text-version/</guid>
<description><![CDATA[in your view : @using (Html.BeginForm(&quot;CreateCookie&quot;, &quot;AgeScreener&quot;, FormMethod.]]></description>
<content:encoded><![CDATA[<p>in your view :</p>
<pre class="brush: xml; title: ; notranslate" title="">
@using (Html.BeginForm(&#34;CreateCookie&#34;, &#34;AgeScreener&#34;, FormMethod.Post, null))
{
    @Html.HiddenFor(x =&#62; x.ReturnUrl);
    @Html.HiddenFor(x =&#62; x.Day, new { id = &#34;input_day&#34; });
    @Html.HiddenFor(x =&#62; x.Month, new { id = &#34;input_month&#34; });
    @Html.HiddenFor(x =&#62; x.Year, new { id = &#34;input_year&#34; });														 
													  
							   								  
	&#60;div id=&#34;day_container&#34;&#62;
		@for (int i = 1; i &#60; 32; i++)
		{
			&#60;a href=&#34;#&#34; id=&#34;day_@(i)&#34;&#62;@i &#60;/a&#62;	  
		}
	&#60;/div&#62;
	
	&#60;div id=&#34;month_container&#34;&#62;
		@foreach (var item in Model.MonthList)
		{
			&#60;a href=&#34;#&#34; id=&#34;day_@(item.Value)&#34;&#62;@item.Name &#60;/a&#62;
		}
	&#60;/div&#62;
	
	&#60;div id=&#34;year_container&#34;&#62;
		@for(int i= DateTime.Now.Year; i &#62; DateTime.Now.Year - 100; i--)
		{
			&#60;a href=&#34;#&#34; id=&#34;year_@(i)&#34;&#62;@i &#60;/a&#62;
		}
	&#60;/div&#62;
	
	@Html.DropDownListFor(x =&#62; x.Country, Model.CountriesSelectListItems);    																	  																  
	
	&#60;input type=&#34;submit&#34; value=&#34;Submit&#34; /&#62;
	
}
</pre>
<p>Jquery :</p>
<pre class="brush: jscript; title: ; notranslate" title="">
$(document).ready(function () {

	var day;
	$('#day_container a').click(function () {
		day = $(this).attr('id').split('_')[1];
		$('#day_container a').removeClass('selected');
		$(this).addClass('selected');
		$('#input_day').val(day);

	});

	var month;
	$('#month_container a').click(function () {
		month = $(this).attr('id').split('_')[1];
		$('#month_container a').removeClass('selected');
		$(this).addClass('selected');
		$('#input_month').val(month);
	});

	var year;
	$('#year_container a').click(function () {
		year = $(this).attr('id').split('_')[1];
		$('#year_container a').removeClass('selected');
		$(this).addClass('selected');
		$('#input_year').val(year);
	});

}); 
</pre>
<p>css style :</p>
<p>.selected{<br />
  font-weight:bold;<br />
}</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Awesome Latest jQuery Tutorials !!!]]></title>
<link>http://jophin.wordpress.com/2011/06/29/awesome-jquery-tutorials-2/</link>
<pubDate>Wed, 29 Jun 2011 05:34:08 +0000</pubDate>
<dc:creator>jo</dc:creator>
<guid>http://jophin.wordpress.com/2011/06/29/awesome-jquery-tutorials-2/</guid>
<description><![CDATA[Now we all must know about the importance of jquery. Jquery brings new revolution in web world here]]></description>
<content:encoded><![CDATA[Now we all must know about the importance of jquery. Jquery brings new revolution in web world here]]></content:encoded>
</item>
<item>
<title><![CDATA[jquery UI Design Latest Trends!]]></title>
<link>http://jophin.wordpress.com/2010/05/20/jquery-ui-design-latest-trends/</link>
<pubDate>Thu, 20 May 2010 10:07:29 +0000</pubDate>
<dc:creator>jo</dc:creator>
<guid>http://jophin.wordpress.com/2010/05/20/jquery-ui-design-latest-trends/</guid>
<description><![CDATA[jquery UI Design becoming popular these days and many major websites already using it. jquery add go]]></description>
<content:encoded><![CDATA[jquery UI Design becoming popular these days and many major websites already using it. jquery add go]]></content:encoded>
</item>

</channel>
</rss>
