Javascript Calendar without popuphttp://forums.asp.net/t/1807648.aspx/1?Javascript+Calendar+without+popupThu, 31 May 2012 08:51:52 -040018076484998084http://forums.asp.net/p/1807648/4998084.aspx/1?Javascript+Calendar+without+popupJavascript Calendar without popup <p>Hi,</p> <p>I am looking on the internet for a simple javascript calendar (without popup), but all I found is popup javascript calendar.</p> <p>Is there any websites that offer this tool?</p> 2012-05-25T20:34:10-04:004998092http://forums.asp.net/p/1807648/4998092.aspx/1?Re+Javascript+Calendar+without+popupRe: Javascript Calendar without popup <p>see this jquery calender ...&nbsp;<a href="http://docs.jquery.com/UI/Datepicker">http://docs.jquery.com/UI/Datepicker</a></p> <p>test the following calender if you like it and want to browser its option go to the above link</p> <pre class="prettyprint">&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;link href=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt; &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js&quot;&gt;&lt;/script&gt; &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js&quot;&gt;&lt;/script&gt; &lt;script&gt; $(document).ready(function() { $(&quot;#datepicker&quot;).datepicker(); }); &lt;/script&gt; &lt;/head&gt; &lt;body style=&quot;font-size:62.5%;&quot;&gt; &lt;div id=&quot;datepicker&quot;&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt;</pre> <p><br> <br> </p> 2012-05-25T20:42:22-04:004998109http://forums.asp.net/p/1807648/4998109.aspx/1?Re+Javascript+Calendar+without+popupRe: Javascript Calendar without popup <p>Sorry, I have forgot to mension without any datepicker, just needed simple table showing the days of the month and the current date.</p> 2012-05-25T21:25:02-04:004998299http://forums.asp.net/p/1807648/4998299.aspx/1?Re+Javascript+Calendar+without+popupRe: Javascript Calendar without popup <p>inline jquery DatePicker- &nbsp;<a href="http://stackoverflow.com/questions/9217666/jquery-ui-datepicker-can-i-make-it-static">http://stackoverflow.com/questions/9217666/jquery-ui-datepicker-can-i-make-it-static</a>&nbsp;</p> <p>Thanks,</p> 2012-05-26T05:33:15-04:005005459http://forums.asp.net/p/1807648/5005459.aspx/1?Re+Javascript+Calendar+without+popupRe: Javascript Calendar without popup <p>Hi,</p> <p>You could use ajax control toolkit Calendar to do that. For more details, please refer to: <a href="http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/Calendar/Calendar.aspx"> http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/Calendar/Calendar.aspx</a> and <a href="http://www.asp.net/ajaxlibrary/act_Calendar.ashx">http://www.asp.net/ajaxlibrary/act_Calendar.ashx</a> .</p> <p>Best wishes,</p> 2012-05-31T08:51:52-04:00