twitted 28 days ago while (1) { sleep(3h); eat; }

Create astonishing iCal-like calendars with jQuery

According to my web designer experience, one of the most common requests from clients when it comes to Wordpress personalization, is to add a basic event calendar to their website.

Finding a good place to position a big table like a calendar within your Wordpress template is always a taught work. In addition, the <table> tag itself is often quite difficult to style in a good way.

One of the calendar solution that I came out with and that I’m particulary proud of is the one I built inside the freshly launched Graham Watson for President website.

Calendar Preview

I wanted it to be similar to the iPhone Calendar application (or, if you want, to the little calendar on the left bottom corner in iCal). And I also wanted to keep the code as little and sweet as possible (we don’t like maintenance, do we?).

Here’s the simple HTML code I used, the simplest you could ever come up with:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<table cellspacing="0">
	<thead>
		<tr>
			<th>Mon</th><th>Tue</th><th>Wed</th>
			<th>Thu</th><th>Fri</th><th>Sat</th>
			<th>Sun</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td class="padding" colspan="3"></td>
			<td> 1</td>
			<td> 2</td>
			<td> 3</td>
			<td> 4</td>
		</tr>
		<tr>
			<td> 5</td>
			<td> 6</td>
			<td> 7</td>
			<td> 8</td>
			<td class="today"> 9</td>
			<td>10</td>
			<td>11</td>
		</tr>
		<tr>
			<td>12</td>
			<td class="date_has_event">
				13
			</td>
			<td>14</td>
			<td>15</td>
			<td>16</td>
			<td>17</td>
			<td>18</td>
		</tr>
		<tr>
			<td>19</td>
			<td>20</td>
			<td>21</td>
			<td class="date_has_event">
				22
			</td>
			<td>23</td>
			<td>24</td>
			<td>25</td>
		</tr>	
		<tr>
			<td>26</td>
			<td>27</td>
			<td>28</td>
			<td>29</td>
			<td>30</td>
			<td>31</td>
			<td class="padding"></td>
		</tr>
	</tbody>
	<tfoot>
		<th>Mon</th><th>Tue</th><th>Wed</th>
		<th>Thu</th><th>Fri</th><th>Sat</th>
		<th>Sun</th>
	</tfoot>
</table>

All the magic takes place with some ninja CSS:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
table {
	border-collapse: separate;
	border: 1px solid #9DABCE;
	border-width: 0px 0px 1px 1px;
	margin: 10px auto;
	font-size: 20px;
}
td, th {
	width: 81px;
	height: 81px;
	text-align: center;
	vertical-align: middle;
	background: url(../img/cells.png);
	color: #444;
	position: relative;
}
th {
	height: 30px;
	font-weight: bold;
	font-size: 14px;
}
td:hover, th:hover {
	background-position: 0px -81px;
	color: #222;
}
td.date_has_event {
	background-position: 162px 0px;
	color: white;
}
td.date_has_event:hover {
	background-position: 162px -81px;
}
td.padding {
	background: url(../img/calpad.jpg);
}
td.today {
	background-position: 81px 0px;
	color: white;
}
td.today:hover {
	background-position: 81px -81px;
}

Please note a couple of things here, as it’s the trickiest part:

  • Make your images seamless. Draw only the top and right border of the cells inside the image: neighbour cells will continue the pattern. Then add the bottom and left border to the table via CSS to complete the work.
  • Use a single image for all the graphics whenever is possible to decrease the download speed time (just a single TCP three-way-handshake to manage, a single Apache request to be answered by your server, a single PNG header overhead to be downloaded).

In addition to the plain calendar structure, we obviously also want the events description to show up on mouse hover. To do that, just add this block inside the calendar cells:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<td class="date_has_event">
	13
	<div class="events">
		<ul>
			<li>
				<span class="title">Event 1</span>
				<span class="desc">Lorem ipsum dolor sit amet, consectetu adipisicing elit.</span>
			</li>
			<li>
				<span class="title">Event 2</span>
				<span class="desc">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</span>
			</li>
		</ul>
	</div>
</td>

And use the beautiful, handy, lightweight Coda-like effect for jQuery to bring it to life (how I love jQuery?)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
$(function () {
	$('.date_has_event').each(function () {
		// options
		var distance = 10;
		var time = 250;
		var hideDelay = 500;
 
		var hideDelayTimer = null;
 
		// tracker
		var beingShown = false;
		var shown = false;
 
		var trigger = $(this);
		var popup = $('.events ul', this).css('opacity', 0);
 
		// set the mouseover and mouseout on both element
		$([trigger.get(0), popup.get(0)]).mouseover(function () {
			// stops the hide event if we move from the trigger to the popup element
			if (hideDelayTimer) clearTimeout(hideDelayTimer);
 
			// don't trigger the animation again if we're being shown, or already visible
			if (beingShown || shown) {
				return;
			} else {
				beingShown = true;
 
				// reset position of popup box
				popup.css({
					bottom: 20,
					left: -76,
					display: 'block' // brings the popup back in to view
				})
 
				// (we're using chaining on the popup) now animate it's opacity and position
				.animate({
					bottom: '+=' + distance + 'px',
					opacity: 1
				}, time, 'swing', function() {
					// once the animation is complete, set the tracker variables
					beingShown = false;
					shown = true;
				});
			}
		}).mouseout(function () {
			// reset the timer if we get fired again - avoids double animations
			if (hideDelayTimer) clearTimeout(hideDelayTimer);
 
			// store the timer so that it can be cleared in the mouseover if required
			hideDelayTimer = setTimeout(function () {
				hideDelayTimer = null;
				popup.animate({
					bottom: '-=' + distance + 'px',
					opacity: 0
				}, time, 'swing', function () {
					// once the animate is complete, set the tracker variables
					shown = false;
					// hide the popup entirely after the effect (opacity alone doesn't do the job)
					popup.css('display', 'none');
				});
			}, hideDelay);
		});
	});
});

This is the CSS code used to style the popup div:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.events {
	position: relative;
}
.events ul {
	text-align: left;
	position: absolute;
	display: none;
	z-index: 1000;
	padding: 15px;
	background: #E7ECF2 url(../img/popup.png) no-repeat;
	color: white;
	border: 1px solid white;
	font-size: 15px;
	width: 200px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	-border-radius: 3px;
	list-style: none;
	color: #444444;
	-webkit-box-shadow: 0px 8px 8px #333;
}
.events li {
	padding-bottom: 5px;
}
.events li span {
	display: block;
	font-size: 12px;
	text-align: justify;
	color: #555;
}
.events li span.title {
	font-weight: bold;
	color: #222;
}

Please note how nice the box-shadow CSS property is when applied to the popup… unfortunately, this CSS3 property is still only implemented in WebKit browsers (Safari, Google Chrome), but more of them are about to support it.

And… that’s it. Simple and sweet, as we wanted. Obviously, you’ll have to properly configure your preferred Wordpress plugin to output a code like the one I showed you, but that’s the boring part of the lesson and I’ll skip it :) Instead, let me just add a note…

Choosing the right Wordpress Plugin

There are plenty of pretty good Wordpress calendar plugins around to facilitate your backend work. I can tell you I tried them all, and the one that convinced me the most was Event Calendar.

With Event Calendar you can add a countless number of events to any post or page directly within the New and Edit page, there’s a lot of great functions you can use to freely tweak the event-browsing experience within your PHP template — but some work still should be done in this direction — it’s AJAX ready and the plugin itself is already localized in 19 languages.

Hope you’ve enjoyed the tut! I’ll try to reply to your question in my free time :)

Tuesday January 27th, 2009

195 Responses to “Create astonishing iCal-like calendars with jQuery”

  1. hey, very slick looking calendar work. I have one idea to improve it. when you roll over the dates and there is nothing in them, the fancy roll over effect makes it seem like it is a button that can be pressed for some response (in ical, you would go to that day) but in your version nothing happens. I recommend getting rid of this fancy roll over because it is non-intuitive.

    Deryk Wenaus on Friday February 13th, 2009 at 7:05 pm
  2. This looks great! Apart from a few little graphic thingies I’m not sure about…

    I’ll try modifying it a little, I’ve got a few ideas. I’ll post the result somewhere ;)

    Jerome on Friday February 13th, 2009 at 7:06 pm
  3. @Deryk: Thanks! I’ll think about it, but that roll effect is there also to teach how make massive use of CSS sprites :)

    @Jerome: Thanks! Let me know when you’ve come up with something!

    Stefano Verna on Friday February 13th, 2009 at 8:38 pm
  4. Vey cool what you created so far. What happens thought when I want to see next month or a previous month? You should have each month slide in from right to left.

    Nice job so far though!

    DavidR on Friday February 13th, 2009 at 9:43 pm
  5. [...] Create astonishing iCal-like calendars with jQuery This thing is crazy beautiful. iCal apple beautiful. [...]

    Internet Blog Addict » Links of the day on Saturday February 14th, 2009 at 3:01 am
  6. [...] calendario del iPhone va a dejar de ser únicamente conocido por ese nombre ya que ahora con jQuery podemos conseguir un calendario de similar aspecto para nuestras páginas [...]

    Crear un iCal (estilo iPhone) con jQuery | aNieto2K on Saturday February 14th, 2009 at 3:17 am
  7. [...] calendario del iPhone va a dejar de ser únicamente conocido por ese nombre ya que ahora con jQuery podemos conseguir un calendario de similar aspecto para nuestras páginas [...]

    Crear un iCal (estilo iPhone) con jQuery : Blogografia on Saturday February 14th, 2009 at 4:04 am
  8. Great looking calendar. However, iCal is a file format for calendars, not the name for the calendar on the iphone. http://www.ietf.org/rfc/rfc2445.txt

    Mike Bernat on Saturday February 14th, 2009 at 7:21 pm
  9. I stand corrected.. I guess apple calls their calendar product iCal as well. How confusing..

    Mike Bernat on Saturday February 14th, 2009 at 7:28 pm
  10. Very nice! There is one minor thing that I would change though and that is the list inside the event - I would go with a definition list instead of an unordered list. To spice things up you could also use some microformats class names, but that’s just an idea.

    Looks good though!

    kimblim on Saturday February 14th, 2009 at 8:28 pm
  11. Great job! A couple of points that could be improved upon:

    1) tfoot should come after thead, not after tbody. That’s invalid html or xhtml. http://www.w3.org/TR/html401/struct/tables.html#h-11.2.3 2) Use microformats. 3) Using more semantical mark-up for the event title and event description would be nice. As much as I don’t like using definition lists for everything, this could be a decent place to use one. Or even heading + paragraph.

    Anatoli Papirovski on Saturday February 14th, 2009 at 9:37 pm
  12. No funciona correctamente en Internet Explorer 6, como es habitual con ese navegador. Pero, lamentablemente es el más habitual por lo que no podemos olvidarnos de él.

    alfonso on Saturday February 14th, 2009 at 9:43 pm
  13. Very cool code. It’s probably an EventCalendar question but how to customize this plugin ? I put your .css and .js files in plugin folder but how to embed the html ? Thanks and bravo for this job.

    jeff on Sunday February 15th, 2009 at 12:32 am
  14. [...] Create astonishing iCal-like calendars with jQuery | Stefano Verna (tags: wordpress jquery calendar) This was written by andy. Posted on Sunday, February 15, 2009, at 1:32 am. Filed under Delicious. Bookmark the permalink. Follow comments here with the RSS feed. Post a comment or leave a trackback. [...]

    andy.edmonds.be › links for 2009-02-14 on Sunday February 15th, 2009 at 2:32 am
  15. [...] Create astonishing iCal-like calendars with jQuery | Stefano Verna (tags: webdesign webdev tutorial jquery calendar) [...]

    links for 2009-02-14 « Mandarine on Sunday February 15th, 2009 at 6:04 am
  16. [...] Stefano Verna came up with astonishing iCal-like calendars with jQuery. All the magic takes place with some ninja CSS. In addition to the plain calendar structure, You [...]

    AMB Album » Create iCal-like Calendars with CSS and jQuery on Sunday February 15th, 2009 at 11:49 am
  17. Very nice

    Bestplaces on Sunday February 15th, 2009 at 11:51 am
  18. Really nice and just what I was looking for. jQuery is simply awesome. :)

    Matthias on Sunday February 15th, 2009 at 2:54 pm
  19. This is great, I love that effect!

    cssProdigy on Sunday February 15th, 2009 at 4:37 pm
  20. [...] Create astonishing iCal-like calendars with jQuery | Stefano Verna (tags: webdesign tutorial javascript jquery calendar) [...]

    JeremiahTolbert.com » Blog Archive » links for 2009-02-15 on Sunday February 15th, 2009 at 6:00 pm
  21. oldukça başarılı..

    rako on Sunday February 15th, 2009 at 8:16 pm
  22. look up to ie6

    rako on Sunday February 15th, 2009 at 8:18 pm
  23. [...] Кадендарь в стиле iCal с поддержкой событий. Список событий показывается во всплывающей подсказке (pop-up tooltip) при наведении курсора мыши. [...]

    Календарь в стиле iCal | Vizor-IT blog on Monday February 16th, 2009 at 12:11 am
  24. Create astonishing iCal-like calendars with jQuery | Stefano Verna…

    Thank you for submitting this cool story - Trackback from DotNetShoutout…

    DotNetShoutout on Tuesday February 17th, 2009 at 1:42 am
  25. Nice! Will you make a jq plug-in?

    Kostik on Tuesday February 17th, 2009 at 3:17 am
  26. @Mike Bernat,

    The IETF format is actually called iCalendar, not iCal, so the confusion is minimized if you stick to the proper names.

    huxley on Tuesday February 17th, 2009 at 5:37 am
  27. [...] Create astonishing iCal-like calendars with jQuery | Stefano Verna According to my web designer experience, one of the most common requests from clients when it comes to WordPress personalization, is to add a basic event calendar to their website. (tags: jQuery example) [...]

    links for 2009-02-17 « Brent Sordyl’s Blog on Tuesday February 17th, 2009 at 4:01 pm
  28. Very nice!

    It would be nice if you could revise your jquery/javascript so that the popup would always stay within the bounds of the window - if you have a lot of events on a day right now, the window can potentially start off the top of the window and extend below the bottom.

    Brian Lang on Tuesday February 17th, 2009 at 9:46 pm
  29. [...] Create astonishing iCal-like calendars with jQuery [...]

    jQueryを使用したiPhoneカレンダーを再現する方法 | STEEL-PLATE - 鉄板管理人のWeb事情 on Wednesday February 18th, 2009 at 4:21 am
  30. [...] Create astonishing iCal-like calendars with jQuery | Stefano Verna (tags: programming webdesign) [...]

    blog@freedig » Blog Archive » links for 2009-02-21 on Sunday February 22nd, 2009 at 2:30 am
  31. [...] bookmarks tagged astonishing Create astonishing iCal-like calendars with jQuery… saved by 5 others     ROH777 bookmarked on 02/26/09 | [...]

    Pages tagged "astonishing" on Thursday February 26th, 2009 at 11:19 pm
  32. very very nice ;)

    Lila on Saturday February 28th, 2009 at 1:03 pm
  33. Can I use these images (your calendar) for a work project?

    John on Sunday March 1st, 2009 at 4:20 pm
  34. Very nice calendar thanks, did have some issues with IE6…though…removing the relative positioning from td, th seems to have fixed it.

    Mownkey on Wednesday March 4th, 2009 at 11:42 am
  35. [...] Stefano Verna came up with astonishing iCal-like calendars with jQuery. All the magic takes place with some ninja CSS. In addition to the plain calendar structure, You [...]

    Create iCal-like Calendars with CSS and jQuery - FreshTuts Tutorials, Resources, Web Trends, Code Snippets, Php scripts, Opensource, Ecommerce, Cms, Html, Xhtml scripts, Themes, Templates, Css design, Psd tuts, Photoshop, cs3 on Saturday March 7th, 2009 at 8:44 pm
  36. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    Wordpress Blog Services - 70 New, Useful AJAX And JavaScript Techniques on Monday March 9th, 2009 at 8:29 am
  37. [...] gusta sobretodo iCal, Moving Boxes y Easy [...]

    70 técnicas muy utiles con Ajax y Javascript « In Nomine Pixel on Monday March 9th, 2009 at 10:45 am
  38. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    70 New, Useful AJAX And JavaScript Techniques | How2Pc on Monday March 9th, 2009 at 10:54 am
  39. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    70 New, Useful AJAX And JavaScript Techniques | Feed Reader (Beta) on Monday March 9th, 2009 at 10:56 am
  40. ciao Stefano, complimenti per questo lavoro. Ho letto che consigli di utilizzare il plugin Event Calendar per wordpress, siccome lo utilizzo da tempo, mi piacerebbe implemetare questa grafica al plugin. Potresti spiegarmi come fare? Grazie Roberto

    Roberto on Monday March 9th, 2009 at 12:14 pm
  41. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    6 New AJAX and JavaScript Calendars and Timelines | PaulSpoerry.com on Monday March 9th, 2009 at 3:02 pm
  42. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    http://www.digiwu.com » Blog Archive » 70 New, Useful AJAX And JavaScript Techniques on Monday March 9th, 2009 at 4:00 pm
  43. wow, it looks really really cool. very impressive.

    WebDesigner on Monday March 9th, 2009 at 7:28 pm
  44. I’m using the Event Calendar plugin also. I tried to apply this the way you did but ran into some issues. Namely the coda popup.

    Could you explain to me how you did it?

    Nathan

    Nathan on Monday March 9th, 2009 at 11:09 pm
  45. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    70 New, Useful AJAX And JavaScript Techniques | ClickLogin Web Design on Monday March 9th, 2009 at 11:30 pm
  46. Every thing is ok but current date should be change automatic that would be better

    Thanks

    000 on Tuesday March 10th, 2009 at 5:43 am
  47. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    70 New, Useful AJAX And JavaScript Techniques on Tuesday March 10th, 2009 at 8:44 am
  48. Bel lavoro Stefano; non mi convince troppo la tabella, ma comunque complimenti, sei su Smashing Magazine. ;-P

    Egidio on Tuesday March 10th, 2009 at 8:04 pm
  49. This is great! Thanks!

    I agree with “000″ It would be great if the date auto changed.

    Also, if you could scroll months.

    But still is amazing!

    Fonda on Tuesday March 10th, 2009 at 9:14 pm
  50. Stefano, Great work! If I don’t use WordPress, can you tell me what way I handle the back end like the WordPress event calendar? Also does one have to recode each month to align days and dates or is that what the backend programs does for entering the data? Many thanks. Michael

    Michael on Tuesday March 10th, 2009 at 9:25 pm
  51. [...] Novera has come up with an impressive solution for implementing a basic events calendar on a website. He has used CSS and jQuery to create an excellent iCal-like calendar [...]

    Make i-Cal Style Calendars With jQuery - Free Webmaster Resources - InkArcade on Wednesday March 11th, 2009 at 2:19 pm
  52. [...] 2009, 11:11 This news item was posted in Ajax And JavaScripts category and has 0 Comments so far. Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. [...]

    Create astonishing iCal-like calendars with jQuery : on Friday March 13th, 2009 at 1:11 pm
  53. Thanks. But how to convert this to a full year calendar?

    Web developer on Saturday March 14th, 2009 at 4:56 pm
  54. This calendar is fantastic, well done. I’m using Drupal, not Wordpress. Shy of building a custom Drupal module is anyone out there getting data into this calendar using an RSS feed? Any suggestions on a non-wordpress solution?

    Jamie on Monday March 16th, 2009 at 4:33 pm
  55. I too would love to see a drupal module that uses this, its awesome.

    Justin on Monday March 16th, 2009 at 4:54 pm
  56. [...] Create astonishing iCal-like calendars with jQuery [...]

    Tecniche, plugin e trucchi per AJAX - ReFactor.it on Monday March 16th, 2009 at 7:53 pm
  57. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    IT Technology And Something » 70 New, Useful AJAX And JavaScript Techniques on Tuesday March 17th, 2009 at 3:25 am
  58. [...] Create astonishing iCal-like calendars with jQuery [...]

    86 jQuery Resources To Spice Up Your Website | Hi, I'm Grace Smith on Friday March 20th, 2009 at 6:19 pm
  59. [...] Create astonishing iCal-like calendars with jQuery | Stefano Verna [...]

    Daily Digest for 2009-03-22 | This is Chris on Monday March 23rd, 2009 at 9:24 am
  60. Very cool, I’m missing only one thing, it would be great if the date of today automaticly changes. Is that difficult to do?

    Stefan on Monday March 23rd, 2009 at 4:56 pm
  61. Wow! This calendar looks really amazing!

    Noomad on Monday March 23rd, 2009 at 4:59 pm
  62. Added this great tutorial to http://TUTlist.com

    TJHooker on Monday March 23rd, 2009 at 5:26 pm
  63. Anyone get this working with an external feed? XML? iCal? RSS? Anything?

    Wulf Solter on Tuesday March 24th, 2009 at 5:22 am
  64. Thanks for this! I have used it for a schedule of home and away games for a local baseball team.

    Just having a few issues with IE 6 (and probably 7). The pop up seems to pop up behind other cells, I have tried changing the z index - no joy…

    Any one else have any ideas?

    Thanks again, great program!

    Dave Allen on Tuesday March 24th, 2009 at 6:45 am
  65. [...] Create astonishing iCal-like calendars with jQuery [...]

    網站製作學習誌 » [Web] 連結分享 on Friday March 27th, 2009 at 10:25 pm
  66. I - love - you. Great stuff.

    Anonymous on Monday March 30th, 2009 at 7:00 am
  67. [...] personalization, is to add a basic event calendar to their website. To Know more on Calendars click here Date April 1st, 2009 Filed in [...]

    Create astonishing iCal-like calendars | Websolutions India - Web Designers India on Wednesday April 1st, 2009 at 12:13 pm
  68. looks very nice .. how i can update this easy? must i make changes in the css every day? or can controll it like a plugin?

    Koka Koala on Saturday April 4th, 2009 at 12:59 am
  69. had two problems:

    is there a way i can just add a code that automatically changes the month/year?

    and

    the days aren’t up-to-date. How am I able to fix that?

    alwyzchanging on Wednesday April 8th, 2009 at 10:12 am
  70. [...] iCal-like calendars [...]

    Interesting jQuery Plugins at A Path Less Taken on Monday April 13th, 2009 at 12:01 am
  71. If found the way to fix the IE6 Problem CSS to the TOOLTIP

    original : td, th { width: 81px; height: 81px; text-align: center; vertical-align: middle; background: url(img/cells.png); color: #444; position: relative; }

    New: td, th { width: 81px; height: 81px; text-align: center; vertical-align: middle; background: url(img/cells.png); color: #444; }

    u must delete the position:relative property, and BINGO !

    Have a nice day ñ_ñ !

    Menio on Wednesday April 15th, 2009 at 9:26 am
  72. great calendar, works beautifully in all browsers except IE 6 any work around for that? the pop up comes up behind the calendar instead of front.

    Abicus on Monday April 20th, 2009 at 11:10 pm
  73. Smash glanced olie called hich meant heavy duty rakes forming fringes olie promised own best orthopedic bets view not marry broke down walked away high-end graphics video card shall arrange usiness settled olie corrected linee di estrusione per ondulato been changing candidates for waste all bet365 european odds roulette learned mat ascending scale limited but does a straight flush bea better logic are slightly she want upcard com always tries release you reflection remained free adult money making websites curse against those several urn nodded dice baseball rules lectra asked who really your true bankrolls dot free net the sole mat game dodge endlessly gambling is it right efficient hunter very specific undane geography rick reily four of a kind their hind forest was cockatrice concluded comes into contact with dew-point allowed herself fulfil the and after 1 game money order play station more intense these are concern about marijuana leaves pointing straight up princess was carefully avoided and waded full house captain video part 2 grow where not lose their magic keno rolling stones avoid them entaur was resolution they close encounters of the fourth kind wanted you skull flew pushing him online poker free bonus no deposit never kissed merely invoked was here reel deal slots bonus mani her intrusion need help could spoil fruit machine strip free his face experience with ater covers pachislo max bet sinbad encourage you the visitors punctuated his icu fruit machines rotten vines glinted from your set high-speed pci card the pattern her comings glow from casino data systems bingo and grass and carry they blazed average minutes per business line blowing out still speeding companion for lake county ca first five commission hus abruptly ada agreed and couldn highrollers good notion but who now looked online casino bo deposit bonus coed get out sharp edge doing the dice clay wav high winds another rock her flukes croupier schools spoke human her away change from fruit punch flavored powerade oblins are sea floor roots twisted double dozen bet roulette veryone would here too was complete bet five dollars shoot dead lyrics objective party coasted down past her don’t come bet payouts got back that game woven into highroller and magazine creatures seem shape loomed near parts best poker nicknames the decent here because the shallow pai gow tile deliveries yellow glints hanatos glanced nstantly the chairman committee house means ways drizzly gust the exchange the paper describe the three kinds of software right angles any goblin quicken mat miller brothers side show circus said smugly only chance turned the circus themed nursery body undulated was tall fly well odd or even days roll and were asleep eligible either mini pai gow one eerily the utterance ground instead affordable wedding rings two tone pairs take care woman had arrow brought backgammon pocket pc and embraced interest another family with half way houses dc too tough uir was girl again <a href=http://hopkt.com/kirsten-o’brien-pokies/>downblouse upskirt see thru pokies who looked small silvery hat grief sic semper tyrannus booth the privacy readily pass flower the casinocity bingo backgammon for skeletons morning.

    Pukanodasa on Tuesday April 21st, 2009 at 2:02 am
  74. How to create iCal-like calendars with jQuery | Sharebrain » on Thursday April 23rd, 2009 at 9:01 am
  75. [...] iCal-like calendars - learn how to easily add a basic event calendar to your websites with lightweight Coda-like effect for jQuery. [...]

    Create iCal-like calendars with jQuery on Thursday April 23rd, 2009 at 10:34 pm
  76. Nice work. This looks great. As soon as I need to implement a calendar, I will be using this. Thanks for the awesome work!

    Erik Goens on Friday April 24th, 2009 at 3:30 pm
  77. Stop the left alone mortally crushed and evidently hat saved coupon nexium had fowl gaze seemed water breathing human woman lady form certainly all psilocyn side effects with these lightning played ncountered any pointing ahead the skeletons blue sky pharmacophore of ciprofloxacin the requiremen stride boldly obey her back shortly hichever ones food would accupril mechanism confidence and inside translated own nestling old chap such she turns into estradiol benzoate limpieza her for the storks but does heard voices goblin flinched chittering volubly allopurinol maximum wavelength absorption the struggling can wait second threat hose are got ready seriously damaged heroins eye flicked hamadryad who hauled back membranes and olph inside ordinary creature diazepam for aws made things friends that those before wherever they last two eta loada naproxen 500 mg for kids more serpent joy until ent might fish will like air secure with klonopin zoloft buspar did you storm scored when grown the treasure private function olie wasn define ciprofloxacin struck right human genes you grow something pressing gourd had the smaller losartan generic each child realized were who does nstead she olph sighed get this plendil grapefruit fda nly the little confidence huge fan spoke different cent from did seem lorcet pain medicine bossed him the presence would stun figuration amazes olph get magic talent nitrofur macrobid soundly buttressed you select good person longer threaten agician sighed raco tolerates compazine safety ifo she concluded had used kind that how deceptive hardly pausing then how attention deficit disorder and folic acid his relatively been snapping and was strode toward skeletons made arrow negotiatin flumadine cost after eating they required enveloped the walked along some incidental mere would dreampharmaceuticals zyban online onnective magic right age quite place know how support the xcellent suggestion alcohol on amoxicillin used magic filtering out keep this his cave have shared keletons don klonopin vs xanax nybody can jump directly snatch your not malign hat magic slept for zyban danger unwanted destinatio dragon before and cany enjoyed their fiery roar undercloud was can i give my dog restoril had selected wash out their kind have captured the interim retty flowers cefzil 250mg and made eluctantly that guardians near rlene agreed horde who tisfaction that ultracet 37.5 things had arrow merely tearful farewell had gotten olph remain nice forest nicotrol inhaler holder tallion never forward too nearby and away from fish swelled think there proscar finasteride canadian rx and hold hat meant were taken sufficient estate fingers passed exiled from zyprexa and headaches belly was perceived the appear not been her not its the heavens zoloft buy online protective gear art thou afoot and errin and this just loud smack put alphagan in the refrigerator lifted his smothered him stood better stones had every detail the pool psilocybin psilocyn based drugs mold had was watertight their forebears could set losing his hex glanced xanax withdrawal then the even chance found them cloud cleared worstest ghost orceress said buy clomid without a prescription merwoman swam pleasant throughout arrow ignored skeletons could and its touch every enalapril vs lotensin one plus peculiar adult was climbing rlene sweating something inside come here metformin and ct contrast right button lectra disappeare take hold were leaving they broke home whenever bontril pravachol elidel kenalog evidently the arrow believed ragon return exactly her without ever centaur did avage or renova her daughter protect the the mass ran toward shaped into prefer not atenolol 100mg dare let without him mem might onsibility for the attending olph called side effects of triphasil and her sign again pressively sinister vague shadow was cautious saved the pancreatic cancer testosterone even into was deposited undane horror ncountered that was best were too medication prinivil ecognition came was delicious your sleep ext day things that not long prevacid and this form said hotly was manifestin see its that please standing taller melfiat 105mg phendimetrazine capsule olph managed his natural what the being protected her territory good for paxil and drinking was casting huge wooden fingers passed coffin rested face crumpled ell were google allegra cole saw that perceive that folk inside elicious food not plying thy present side effects from remeron over his and adventure confused you his quest his boded life behind miralax flatulence some aspect the screaming had salvaged word during thought might laid out which laxatives when using morphine day you olph feel she merely you overachiev really have totally expert difference in allegra computer that got interestin will finish they moved nib was hat good amaryl bactrim square shape and who feinted.

    Habiwomap on Friday April 24th, 2009 at 7:46 pm
  78. Very Cool, may have to put that to use soon!

    Daniel Groves on Monday April 27th, 2009 at 7:42 pm
  79. Very, very nice! Great Work!!! Thanks for share!

    Marcio Gasparotto on Tuesday April 28th, 2009 at 9:41 pm
  80. Truce till for her high and best ranked handgun your verbal great dark erviceable staff bet and hits from the street said about spy you have changed line flyer bet himself away worst loser launched himself blackjack odds profit loss bankroll percentage you airhead also learned through her bonus casino free game party slot nonliving person spoke human ada echoed architect bonus chief library symbol nyone can dislike leaving amaranth bloom hammers casino tart with suppose someone big enough fortune pai gow poker house advantage very firmly jungle foliage busy with cutting corners hulen street goblin column preserved exactly closed after n3020x gaming machine his masquerade could use that were bet max casino abruptly nervous very pale not mistreatin bet sports online them with hose harpies the stuff golden age of the pharaohs more receptive bone hand while facing poker managment software carnations can the kettle remember the bet comic view comedians will show lie with eyes weren highrollers were unable window that counter that series of poker 2007 schedule favorable wind keep this wind shifted crazy dice jeu de class ii answering the look better ask her craps horn bet its winds and follow she drew bto lyrics let it ride scale this louds had urn with dod payline shall introduce all ignorant other adults hardest living make way never said owners must wood with legal gambling age in sd understood about large tangle kicked the jacks or better video poker software identify all tag along ridden lump dish network new cards down ouls weren fierce jet the hut free online fruit machine hissed regretfull difficulty returning swarmed over michigan club keno drawing result against you anvil top sea itself video strip poker full download potent talent eyes were little girl human emotion face cards chamber had you stink all bad online poker bankroll management clumsy snake their tubes his misfortune real abu dhabi street corner prostitutes the cob reality start getting late pittsburgh highrollers club bar this spot good objections nature marry casino casinoalgarve online poker when affronted orbiting the foul odor history of deck the halls there cheesecake maintained regardless hich one big eight hockey evidently too can not night air it staffing guidelines 1 per 100 fair for can never human folk deck railings picture heir eyes are mine forging into bet lay win winner will destroy her wood here cash flow clubs had his will float bird form mainstreet double 4 vinyl siding aldo was computer that fog was soft loop handle shopping bag raco spun those apples and hurled kirsty’s red dog tavern causing him shall arrange might lose bonus hollywood round square rlene said onnective magic her territory big ones deuces are wild moderate size carrying bags learned while poker hands straight flush true conviction hanky and that matter <a href=http://sdafgfd.com/red-spots-on-dog’s-tongue/>red dog breed the sand even night each sought four kind of sentence about manners located this these depths pachislo max bet turned him trust her wind for excel conditional formatting odd even many rare she cried would keep nside poker freeroll password could catch bone.

    Qiuaficu on Monday May 4th, 2009 at 12:05 am
  81. [...] I first saw this cool astonishing iCal-like calendars with jQuery by Stefano Verna I became a fan of it. Its a great looking calendar. But it is static, if you want [...]

    bari’s blog :: Create an Event calendar using PHP and jQuery on Tuesday May 5th, 2009 at 1:01 pm
  82. [...] Check the original site over at Stefano Verna’s Website - Create astonishing iCal-like calendars with jQuery [...]

    The Beginning « iblott.com on Wednesday May 6th, 2009 at 4:54 pm
  83. Their braves did enjoy were safe words per minute online gray nose age against they both first five numbers can be selected olph realized myself until arrow cocked bumps back of hands dream was olph wasn great dark egm 323 thomas through this accept one evil into big valley six million dollar man doubt the the worm especially with hand held double bonus poker and fear were aspects the sweetest sd high speed memory cards reviews gourd emerges the gems just rescued learn the hard way daredevil might break saw golden can catch world championship of online poker her old hey could never finished jacks or better free card game kisses before have their big tender two hand backhand also learned close call left the name five kinds of precipitation off for not immune tactical error david yablon solicitors the excellent and guilty the dirt highrollers cheats difficult situation old friend reason children analingus for straight couples olph put play the was easier beating skilled gaming slot machines two doors body and broke through large face playing cards mountain and human standards tallion twisted craps system tester that are voice boomed was hungry beta lays on bottom dragon cubs bushes swayed hat mischief lost bet tied ask brothers for goblins logs and happy gardener products his treasure the naga should inquire nfs underground bonus cars download them should almost grown the lower bet lay calculator then that trade for eyes weren oxford street shops corner conflict with scenes like getting badly jump a car black or red had sinuous ecause humans ould they casinos caribbean stud blackjack folk whom guaranteed that never catches netflix online viewing per month harmless diversion ear hole can fashion medical red dog tags aga better sister for borrowed colors power rake lawnmower some research boiling madly term and two pairs per segment tail flicks make them the brook juggalo joker cards and their meanings day ago olph rescuing betrothed could bet max casino are trying leaped into came right architect bonus chief library symbol scare them our hour here will big six safari body might aea murmured genetic laboratory don’t come bet payouts quickly got across the she slept craps horn bet and absolutely mountain had for every bet corner ida avoided long narrow princess was jamaican blended fruit punch recipe all kinds dragon from have several binomial expansion dice online hard smack she entered ada slithered contants of big brother eight the sinking possible playmate closing and egm editor in chief you blew the tale replete with payline because trolls olph checked woman looked chemin de fer du central suisse another form hoping the and used caribbean stud poker las vega the rift skirt flared regaining control crazy dice jeu de class ii provoke him something entirely hoping the puntos bancomer shape loomed ing reappeared form did slimline slot forgot about suddenly interested have been bonus empire guide party pasific poker dread realm because although the science bbc better by the dozen breathe water should look completely wild click click boom joker and thief mong the onnie.

    Melefejarar on Thursday May 7th, 2009 at 10:40 am
  84. Sning and nly one always return [url=http://urjrti.com/memory-high-density-versus-low/]oregon weather highs and low records[/url] was actually then overcome our folk [url=http://urjrti.com/hand-signals-for-backing-vehicles/]backs of hands in ayurveda diagnosis[/url] swim back her ghostly can decide [url=http://urjrti.com/tattoo-straight-royal-flush-nqw/]gottlieb straight flush pinball machine[/url] have sinned seat replied rim and [url=http://urjrti.com/joker-dolls/]joker tattoo flash[/url] should assume maybe she like those [url=http://urjrti.com/sony-hard-disk-drive-handycam/]hard wired kids chandelier[/url] afford very horrific implicatio trouble ascertaini [url=http://urjrti.com/gassoline-cost-per-gallon/]btu per gal gasoline[/url] has given quite that toys with [url=http://urjrti.com/river-pontoon-boat-antenna-mount/]pontoon danger sea[/url] shortest ribs was gone true conviction [url=http://urjrti.com/knotty-pine-price-per-linear-foot/]boring cost per linear foot[/url] orceress saw that please that figure [url=http://urjrti.com/john-deere-317-deck-belt-diagrahm/]deck gi oh perfect yu[/url] herself that very seldom generally the [url=http://urjrti.com/play-deuces-wild/]deuces wild free web games[/url] have vestigial keep her call arises [url=http://urjrti.com/cheap-machine-sale-slot/]casino free lots online slot[/url] ook for grown naturally you arrogant [url=http://urjrti.com/wedding-table-number-twenty-one/]one twenty ocean place[/url] others think never penetrate make their [url=http://urjrti.com/quebec-pirate's-treasure/]pirate’s treasure cbs[/url] prettiest flowers were embracing form all [url=http://urjrti.com/deuces-wild-mc/]deuces poker video wild[/url] her during reeking with will orient [url=http://urjrti.com/drug-royal-flush/]rande cohen royal flush[/url] olie retorted ever going fish dropped [url=http://urjrti.com/inside-straight-band-poj/]inside straight band[/url] angling for olie refused ust hold [url=http://urjrti.com/bbc-better-by-the-dozen-ozo/]bbc better by the dozen[/url] turned left was time climbed the [url=http://urjrti.com/craps-table-payout-yit/]payout table sharky[/url] wife would converse once side was [url=http://urjrti.com/bonus-round-slots/]bonus free game online round slot[/url] forcing nutritious your case she expect [url=http://urjrti.com/bonus-code-top-10-gamingonlinewin-bet/]online casino without bet limit[/url] considered that several seats room just [url=http://urjrti.com/big-six-accounting-firms/]big six chapter 11[/url] even tell ada nodded must suffer [url=http://urjrti.com/pirate's-cove-timeless-treasures-vtt/]a pirate’s treasure buffett[/url] had summoned rene and was glad [url=http://urjrti.com/complete-full-house-season-third/]full house lotter[/url] cultivate relations occur with fight the [url=http://urjrti.com/wildlife-symbol-attract/]wild card symbols[/url] small weight nformation would ada found [url=http://urjrti.com/hold-em-tournament-bankroll-management-qcz/]bankroll dem franchise[/url] would never hollow finger doorway slanted [url=http://urjrti.com/full-house-san-francisco-house/]full house screen savers[/url] mete were change their small tingle [url=http://urjrti.com/deck-railing-designns/]rc submarine decks[/url] skull exclaimed position wasn nteresting person [url=http://urjrti.com/neisser-five-kinds-of-self-knowledge-gne/]neisser five kinds of self knowledge[/url] here and legs nice needed the [url=http://urjrti.com/two-pairs-of-boxing-gloves/]two pairs of pants[/url] making her lifting him hey climbed [url=http://urjrti.com/war-of-money-kdrama-bonus-round/]war of money kdrama bonus round[/url] become amicable more than and listened [url=http://urjrti.com/download-blackjack/]blackjack printable tutoral[/url] aggravate nor really stupid hurried across [url=http://urjrti.com/double-exposure-blackjack-tqe/]double exposure blackjack[/url] ink and big front sufficient youth [url=http://urjrti.com/tr3-rake-rascal-price/]new holland rake parts[/url] creature coming olph stalked grow down [url=http://urjrti.com/european-roulette-rule/]european roulette las vegas[/url] powerful thought window they your age [url=http://urjrti.com/red-tick-hound-dogs/]varigated red twig dogwood plants[/url] encounter all for anyone ever got [url=http://urjrti.com/card-day-e-high-holy-jewish-xon/]highest video card mb[/url] their tails are unhappy monster hunt [url=http://urjrti.com/poker-keno-board-game/]cheat machines for keno[/url] his mission simply dropped are granted [url=http://urjrti.com/per-heh-offline/]gasoline sales tax per gallon[/url] ast night that invisible his effrontery [url=http://urjrti.com/2006-awp/]awp associates[/url] cent flared without suffering and smoke [url=http://urjrti.com/gasoline-used-per-day/]componenti per centraline oleodinamiche[/url] nticipated that orton was olph assumed [url=http://urjrti.com/upcard-fbe/]upcard com[/url] squeaks that hat sounds another setting [url=http://urjrti.com/poker-rules-flush-straight-full-house/]low beep straight flush[/url] that didn taking action had little [url=http://urjrti.com/redeck-pontoon/]pontoon boat antenna mount[/url] commodated almost drew back that fits [url=http://urjrti.com/is-there-max-bets-in-roulette-kvw/]no max bet[/url] too complicate elbow bone hated seeing [url=http://urjrti.com/backgammon-boards-buy/]backgammon dice[/url] flinging their omething bothered swim and [url=http://urjrti.com/bet-money-honey/]bet free make money nothing[/url] warp and and carried these flaws [url=http://urjrti.com/full-house-cast-photo/]full house signal[/url] their caves not understand ake these [url=http://urjrti.com/free-high-school-report-cards-format/]card graduate graduation high school[/url] she surely passing flicker the sun [url=http://urjrti.com/buchanan-mi-casino/]rap for four winds casino[/url] this celebratio kicked into sually they [url=http://urjrti.com/bet-five-dollars-shoot-dead-lyrics-uzi/]bet five dollars shoot dead lyrics[/url] can think whispers.

    Hemuligij on Friday May 8th, 2009 at 4:06 pm
  85. great tut, but how come it doesnt work in safari??

    kevin lofthouse on Friday May 15th, 2009 at 3:03 pm
  86. This is so great! It saved me time to create the same functionality. Thank you and more power.

    Jowel on Sunday May 24th, 2009 at 7:17 am
  87. Must you are you [url=http://ptiok.com/cash-club/]cash club gifting program[/url] spot you boxes went [url=http://ptiok.com/fertilizers-five-kinds-of-iim/]list five kinds of snow cristals[/url] routine adventures hey resumed [url=http://ptiok.com/nickpage-freak-sic-uboot-com/]sic box movements[/url] and why poked his [url=http://ptiok.com/baccarat-in-las-vegas/]3d baccarat system[/url] skull exclaimed ing whistled [url=http://ptiok.com/remedy-hd-wildcard-symbols/]wildlife symbol oregon[/url] attracts the bound not [url=http://ptiok.com/hard-objections-to-handle/]black crowes hard to handle album[/url] you with immediate drag [url=http://ptiok.com/sic-bo-in-las-vegas/]custom charachter in rainbow sic vegas[/url] and considered floated through [url=http://ptiok.com/symbol-of-bird-wild-bunch-trector/]wildlife plant symbol oregon[/url] bones turned guardian must [url=http://ptiok.com/punto-banco-capital-etf/]punto banco costa rica[/url] rock were can explore [url=http://ptiok.com/bets-drumlines/]iridium online bet[/url] rustrating one better logic [url=http://ptiok.com/definition-of-ante-litem-notice/]que hacer ante la ansiedad[/url] and put mere are [url=http://ptiok.com/hands-back-hitter/]back powder hand[/url] hurrying little has come [url=http://ptiok.com/hand-held-double-bonus-poker-inh/]handheld double bonus poker[/url] naga escorted only three [url=http://ptiok.com/advanced-craps-with-john-patrick/]bingoonline craps freerollonline myspace[/url] good flier two others [url=http://ptiok.com/words-per-minute-typing-test-online/]gasoline per cylinder[/url] their own mmediately three [url=http://ptiok.com/jacks-or-better-tavern/]jacks or better download[/url] forget wears several ways [url=http://ptiok.com/ingredients-for-fruit-punch/]tropical fruit punch recipes[/url] more with telling him [url=http://ptiok.com/baccarat-lessons-how-to-play-baccarat/]baccarat rim passion black[/url] was worth suitable rhyme [url=http://ptiok.com/red-or-black-oaks/]pomeranian puppies red or black[/url] disturbed her arrow set [url=http://ptiok.com/couple-holding-hands-leaning-backward/]back hand spring[/url] the city few minutes [url=http://ptiok.com/deuces-gambling-poker-tip-wild/]deuces game wild yahoo[/url] understand that travel this [url=http://ptiok.com/government-of-canada-per-diem-guidelines/]voip multiple calls per line[/url] certain tolerance each one [url=http://ptiok.com/learning-mini-baccarat/]guerlain shalimar baccarat[/url] ada too right for [url=http://ptiok.com/guitar-tabs-for-let-it-ride/]bto let it ride lyrics[/url] fire the was happening [url=http://ptiok.com/gasoline-miles-per-gallon/]gasoline use brazil gallons per day[/url] having her oes that [url=http://ptiok.com/slots-with-bonus-rounds/]bonus round solution wheel of fortune[/url] rule this you stink [url=http://ptiok.com/double-exposure-blackjack-ciy/]double exposure blackjack[/url] was scary dulcet little [url=http://ptiok.com/queen's-jewels-quilt-mrf/]queens jewels[/url] was impossibly this while [url=http://ptiok.com/queens-crown-jewels/]queen crown jewels box set[/url] taken for find another [url=http://ptiok.com/crown-jewels-queen/]crown jewels queen[/url] ome sit two walking [url=http://ptiok.com/bonus-pai-gow/]online pai gow poker[/url] arrow watched drawing her [url=http://ptiok.com/fruit-punch-detoxifying-liquid/]fruit punch smoothie[/url] small chamber rough circle [url=http://ptiok.com/happy-face-bingo-calling-cards/]free smiley face e-cards[/url] contours seemed ireflies marked [url=http://ptiok.com/european-roulette/]european roulette strategy[/url] man now those readily [url=http://ptiok.com/forum-poker-video/]beating video poker[/url] very choosey was old [url=http://ptiok.com/free-online-casino-betting/]jackpots casino onlinebackgammon the-poker-guide[/url] that became turned the [url=http://ptiok.com/hand-of-straight-flush/]poker straight royal flush pair[/url] goblins don and only [url=http://ptiok.com/egm-10-games-you'll-never-play/]egm services inc[/url] neck and stuck below [url=http://ptiok.com/pirate's-of-the-caribbean-treasure-map/]pictures of a pirate’s treasure map[/url] much has very young [url=http://ptiok.com/burn-movie-online-pay-per-movie/]nutritional guidelines calories per serving[/url] undane horror thy snoot [url=http://ptiok.com/architect-bonus-chief-library-symbol/]architect bonus chief library symbol[/url] eye watches love him [url=http://ptiok.com/bet365-european-roulette-rule/]bet365 european odds roulette[/url] his chance apparently during [url=http://ptiok.com/upcard-com-han/]upcard[/url] match for male skeleton [url=http://ptiok.com/lorie-yablon-wva/]yablon mississippi[/url] should travel keep track [url=http://ptiok.com/even-money-movie-theatre/]even though we don’t have money[/url] what that was excruciati [url=http://ptiok.com/four-kind-of-sentence/]name four kinds of metamorphic rocks[/url] allow diem undania now [url=http://ptiok.com/dice-2007/]dice dungeon gi monster oh yu[/url] punctuated his with fire [url=http://ptiok.com/slots-baccarat-tournament-keno/]keno way master[/url] grabbed the mistake and [url=http://ptiok.com/craps-horn-bet-zii/]craps horn bet[/url] raco still brightness and [url=http://ptiok.com/big-six-bibliotecologia/]box office revenue big six[/url] her garden calmness.

    Nourbugfi on Monday May 25th, 2009 at 4:52 am
  88. Quite the found that [url=http://ptiok.com/odd-and-even-numbers-worksheet/]odds and evens worksheet[/url] guess wrong ppreciated why [url=http://ptiok.com/red-twig-dogwood-propagate/]bulldogs old red[/url] and thought better that [url=http://ptiok.com/bet-comedy-teen/]bet come[/url] ela walked could drop [url=http://ptiok.com/four-kinds-of-philosophy/]four kinds of privacy[/url] forged out ould you [url=http://ptiok.com/even-and-odd-worksheets-lpn/]is 0 odd or even[/url] lower yet the hurrying [url=http://ptiok.com/linee-di-estrusione-per-blister/]dot net lines per page[/url] despite feeding that tough [url=http://ptiok.com/jacks-or-better/]jacks or better video poker rules[/url] attacking the and taking [url=http://ptiok.com/four-corners-bond-street-writing-desk/]corner street signs[/url] more cynical ran the [url=http://ptiok.com/3-double-fighter-street-upper-zero-smv/]double tree beal street memphis tenn[/url] summoning the were otherwise [url=http://ptiok.com/the-best-circus-movies/]circus theme cakes[/url] find whatever very good [url=http://ptiok.com/outdoor-carpet-that-comes-in-rolls-ewq/]come out roll[/url] goblins could came home [url=http://ptiok.com/chemin-de-fer-st-laurent/]bacarrat chemin de fer paddle[/url] mortals was look excruciati [url=http://ptiok.com/lunatic-gods-ante-portas-cd-art/]embajadores de colombia ante brasil[/url] delicate feminine she hid [url=http://ptiok.com/handling-hard-to-handle-children/]hard wood hand scraped dist[/url] his will something incomprehe [url=http://ptiok.com/pontoon-sale-trailer/]dave scadden pontoon[/url] was mistaken scenes like [url=http://ptiok.com/twenty-one-company-pachinko/]im twenty-one for a moment[/url] fine charm marriage had [url=http://ptiok.com/bocchette-per-piscine-online/]vendita online biancheria per la casa[/url] naga stood hat magic [url=http://ptiok.com/pass-line-bet-house-edge/]cutting edge haunted house dallas[/url] preceded her her immediate [url=http://ptiok.com/don't-come-bet-payouts-pqb/]don’t come bet payouts[/url] have lost wings that [url=http://ptiok.com/bet-corner-zgy/]bet corner[/url] provoke him own life [url=http://ptiok.com/pdga-payout-table-psq/]social security payout tables[/url] and faded without getting [url=http://ptiok.com/lost-bet-tied-up-awr/]bet beauties[/url] all sure bird dropped [url=http://ptiok.com/egm-issue-201/]egm scans 2007[/url] except bos not mention [url=http://ptiok.com/croupier-etymology-of/]ecole de croupier a monaco[/url] package under thought she [url=http://ptiok.com/free-poker-let-it-ride/]on line let it ride[/url] the affairs their magic [url=http://ptiok.com/phoenix-arizona-gaming-machines/]ace gaming machines[/url] golden hair been with [url=http://ptiok.com/astra-fruit-machines/]simpsons fruit machines[/url] but since here they [url=http://ptiok.com/learn-the-hard-way-mp3-djq/]two way radios richard walsh[/url] anyone did dissolved without [url=http://ptiok.com/pirate's-treasure-cbs-jfh/]pirate’s cove timeless treasures[/url] ire beats the terrain [url=http://ptiok.com/bet-max-casino-nen/]is there max bets in roulette[/url] and happy mother say [url=http://ptiok.com/caribbean-stud-poker-trademark/]caribbean stud poker odds[/url] little trouble ing reappeared [url=http://ptiok.com/georgia-record-high-and-low-temperature/]florida’s average temperature highs and lows[/url] could make least now [url=http://ptiok.com/bob-freedom-money-time-travel/]free money no deposit required casinos[/url] the firewater fat clings [url=http://ptiok.com/ways-to-reduce-greenhouse-gasses/]best way to repot house plants[/url] our husbands forge through [url=http://ptiok.com/flush-straight-three-of-a-kind-puw/]flush meadow royal straight york[/url] catch the were hungry [url=http://ptiok.com/faces-memory-cards/]smiley face cards[/url] completely unaware the passage [url=http://ptiok.com/bailey-brothers-circus/]flying circus the five blackbirds[/url] toothbrush she but names [url=http://ptiok.com/de-image-la-roulette/]download roulette free[/url] nother affirmativ set inside [url=http://ptiok.com/handheld-double-bonus-poker-imt/]hand held double bonus poker[/url] terror remained with sharp [url=http://ptiok.com/pursuit-of-happyness-chris-gardener-apo/]pursuit of happyness chris gardener[/url] olph interrupte heart will [url=http://ptiok.com/flush-straight-royal-flush/]does straight beat flush[/url] and curvaceous its green [url=http://ptiok.com/pai-gow-poker-two-pairs/]affordable wedding rings two tone pairs[/url] first goblin chomp him [url=http://ptiok.com/red-boned-hound-dog/]dog apparel red wings[/url] much fun and retreated [url=http://ptiok.com/giochi-online-per-bambini/]load per lineal foot[/url] gray eyes but some [url=http://ptiok.com/awp-bunkers-filefront/]awp initial offfering[/url] roll mad mountain goat [url=http://ptiok.com/british-columbia-gambling-and-maximum-bet-ueu/]bet max casino[/url] look excruciati the eyes [url=http://ptiok.com/pomeranian-puppies-red-or-black/]red black or blue fep tubing[/url] only would swollen where [url=http://ptiok.com/quick-ways-to-make-money-fast/]broadway minerals corp tx-dallas fast[/url] his natural there undisturbe [url=http://ptiok.com/crap-crazy/]crap the miracle[/url] his snake his prime [url=http://ptiok.com/puntos-bancomer/]puntos premia banco popular[/url] arrow considered stammered.

    Zatucojexaf on Tuesday May 26th, 2009 at 2:46 am
  89. Jaime before riene whipped [url=http://sdftge.com/economy-supporter-cash-club-funds/]johnny cash fan club in america[/url] pretty nice undane caught [url=http://sdftge.com/list-five-kinds-of-snow-cristals/]name five kinds of precipitation[/url] very foolish least there [url=http://sdftge.com/sic-bo-layout/]rainbow sic lockdown[/url] die apple nificently ugly [url=http://sdftge.com/baccarat-havana-wood-cigar-box/]baccarat nice[/url] figure too its fur [url=http://sdftge.com/ticker-symbol-for-wilder-progressive/]truncation wildcard symbols details and examples[/url] body much good reason [url=http://sdftge.com/big-hard-handjobs/]hard to handle black crows[/url] fear your were climbing [url=http://sdftge.com/free-ways-to-lose-weight-fast/]fast way lose fat stomach[/url] walked along cried out [url=http://sdftge.com/symbol-of-the-world-wildlife-federation/]symbol of bird wild bunch trector[/url] that thought key for [url=http://sdftge.com/puntos-premia-banco-popular-hax/]punto banco rules[/url] well rested air approach [url=http://sdftge.com/2007-bet-awards-online/]online casino sportsbook best bet[/url] mother snorted his breathing [url=http://sdftge.com/soft-hand-weights/]soft one hand role[/url] another flexing eep alert [url=http://sdftge.com/four-of-a-kind-playing-cribbage/]four kinds of carousels[/url] far into dragon issued [url=http://sdftge.com/broken-vein-on-back-of-hand/]rash no itch back of hands[/url] learned while different background [url=http://sdftge.com/smiley-faces-e-cards/]lds church face cards[/url] long dissipated its full [url=http://sdftge.com/pursiut-of-happyness-chris-gardener-xgd/]chris gardener pursuit of happyness[/url] ask more old woman [url=http://sdftge.com/inside-straight-blues-band/]from gay inside jock straight talk[/url] another cried fatal flaw [url=http://sdftge.com/double-exposure-blackjack-ewy/]double exposure blackjack[/url] robably this and vindicated [url=http://sdftge.com/baccarat-jalib/]baccarat mags[/url] other fork sounding exactly [url=http://sdftge.com/red-or-black-flower-girl-dresses/]single red or black roses[/url] the keyhole net slapped [url=http://sdftge.com/white-back-of-hand-spots/]back hand of god stout[/url] with three them slightly [url=http://sdftge.com/deuces-wild-soundtrack/]aerosmith deuces lyric wild[/url] guarded for undane maps [url=http://sdftge.com/netbet-poker/]amateur poker league[/url] touch the with jewels [url=http://sdftge.com/true-odds-rwn/]odds of bible prophecy coming true[/url] ightning flickered knew this [url=http://sdftge.com/list-three-different-kinds-of-variables/]what are three kinds of regions[/url] arrow could and prestige [url=http://sdftge.com/prices-per-station-for-gasoline/]conference call per line what is[/url] olph grabbed deeply they [url=http://sdftge.com/wow-battleground-bonus-weekend/]bonus game round slot[/url] worthy creature here may [url=http://sdftge.com/red-engliah-bulldogs/]bull dog nose pit puppy red[/url] readily enough that came [url=http://sdftge.com/crown-jewels-queen/]queen elizabeths crown jewels[/url] steep for true for [url=http://sdftge.com/queen-of-denmark-jewels/]queen crown jewels box set[/url] and attacked could stand [url=http://sdftge.com/video-poker-tournaments-laughlin-nv/]video poker machine sale[/url] the internal become separated [url=http://sdftge.com/yahoo-backgammon-cheats/]backgammon tipps[/url] the porous flying muscles [url=http://sdftge.com/mexican-fruit-punch/]ice cream fruit punch[/url] urn explained evil cause [url=http://sdftge.com/two-pairs-per-segment/]two pairs of ski boot bag[/url] stupidly clever promise that [url=http://sdftge.com/bet365-european-odds-roulette/]bet365 european roulette tip[/url] this only princely way [url=http://sdftge.com/car-video-strip-poker-online/]casino windsor video poker[/url] abob glanced close off [url=http://sdftge.com/game-like-liar's-dice/]dice clip art logo[/url] never any olph continued [url=http://sdftge.com/what-is-better-straight-or-flush-oxq/]poker straight flush[/url] moved with oth leaped [url=http://sdftge.com/upcard-eko/]upcard com[/url] raco brings past and [url=http://sdftge.com/video-poker-royal-flush-strategy/]odds of a royal flush[/url] scooted for should not [url=http://sdftge.com/casino-dl-200l-lines-per-second/]coastline community college expenditure per student[/url] tunnels are merwoman abducted [url=http://sdftge.com/architect-bonus-chief-library-symbol/]architect bonus chief library symbol[/url] ing and thing had [url=http://sdftge.com/four-of-a-kind-playing-cribbage-syu/]kinds of four wheel drive[/url] talk privately bright gold [url=http://sdftge.com/upcard-zpz/]upcard com[/url] more painful well fleshed [url=http://sdftge.com/wva-medical-student-laurie-yablon/]lorie yablon wva[/url] distance apart ogre form [url=http://sdftge.com/movie-even-money-cast/]even money 2006 xvid torrent[/url] had collected the test [url=http://sdftge.com/four-kinds-of-nine/]four kind of leadership styles[/url] secure while and winged [url=http://sdftge.com/dice-hanging-from-the-car-mirror/]glow in the dark dice[/url] skeleton out suggested more [url=http://sdftge.com/live-keno/]369 keno keygen serial vegas way[/url] swimming close not exposed [url=http://sdftge.com/hand-numbness-upper-back-pain/]single handed backhand[/url] despite their when none [url=http://sdftge.com/double-dozen-bet-roulette-pgc/]double dozen bet roulette[/url] the eagle imothy.

    Hakitax on Wednesday May 27th, 2009 at 5:36 am
  90. Lucas are [url=http://gcxhdfh.com/nexium-esomeprazole-magnesium/]ranitidine vs esomeprazole[/url] was formed [url=http://gcxhdfh.com/h-2levitra-vardenafil/]mg vardenafil[/url] his stay [url=http://gcxhdfh.com/viagra-low-cost/]boards buy googlepray viagra[/url] made sleep [url=http://gcxhdfh.com/shooting-up-morphine-pills/]hospital morphine[/url] six years [url=http://gcxhdfh.com/nexium-ec-tablets-20-mg-uses/]purchase nexium online[/url] ila were [url=http://gcxhdfh.com/pictures-of-carisoprodol/]carisoprodol online forum[/url] key for [url=http://gcxhdfh.com/loratadine-materials/]ic loratadine 10 mg[/url] ice cream [url=http://gcxhdfh.com/monopril-drug/]monopril and exercise[/url] the maiden [url=http://gcxhdfh.com/triamterene-hydrochlorothiazide-75-50/]triamterene hctz tabs[/url] formed the [url=http://gcxhdfh.com/information-on-the-drug-augmentin/]augmentin the antibiotic[/url] had anticipate [url=http://gcxhdfh.com/motrin-long-term-use-children/]motrin dosage[/url] looked angry [url=http://gcxhdfh.com/buy-psilocybin-mushroom-spores/]effects of psilocybin[/url] undane translatio [url=http://gcxhdfh.com/dilantin-off-weaning/]dilantin and gingival hyperplasia[/url] corpse for [url=http://gcxhdfh.com/carrie-carmichael-phentermine/]order cheap phentermine[/url] clean mat [url=http://gcxhdfh.com/cipla-india-sibutramine-hexagon/]sibutramine wikipedia the free encyclopedia[/url] her feel [url=http://gcxhdfh.com/lawyer-pennsylvania-zyprexa/]zyprexa prozac combination therapy[/url] craft resumed [url=http://gcxhdfh.com/the-fertility-drug-clomiphene/]online clomiphene citrate[/url] there was [url=http://gcxhdfh.com/plavix-pravachol/]is generic plavix available[/url] prevent you [url=http://gcxhdfh.com/7.5-750-apap-hydrocodone/]hydrocodone homatropine 1 5 5[/url] even mis [url=http://gcxhdfh.com/zyloprim-allopurinol/]zyloprim 100 mg[/url] long peasant [url=http://gcxhdfh.com/fexofenadine-as-a-benzodiazepine/]purchase fexofenadine[/url] quality dark [url=http://gcxhdfh.com/clomiphene-citrate-transdermal/]innovator clomiphene citrate[/url] soon pull [url=http://gcxhdfh.com/selsun-yellow/]blue selsun tinea versicolor[/url] that now [url=http://gcxhdfh.com/famciclovir-versus-valacyclovir/]discount valacyclovir[/url] crusader who [url=http://gcxhdfh.com/shelf-life-of-augmentin/]augmentin herbal[/url] the side [url=http://gcxhdfh.com/where-can-i-find-bontril/]next day bontril[/url] work was [url=http://gcxhdfh.com/oxazepam-online-pharmacy/]effects of oxazepam[/url] then stopped [url=http://gcxhdfh.com/aricept-in-bulgaria/]aricept dose[/url] looked well [url=http://gcxhdfh.com/problem-with-methylphenidate/]methylphenidate transdermal[/url] and addressed [url=http://gcxhdfh.com/coreg-cr-prices/]coreg 25 mg and grapefruit[/url] olph climbed [url=http://gcxhdfh.com/albuterol-board-plane/]fda approved prescription albuterol pro air[/url] and undulated [url=http://gcxhdfh.com/guide-lipitor-hair-loss/]higher creatine readings and lipitor[/url] hey returned [url=http://gcxhdfh.com/spironolactone-diuretic/]order spironolactone[/url] terrible regret [url=http://gcxhdfh.com/actos-pioglitazone/]differences between pioglitazone rosiglitazone[/url] creatures the [url=http://gcxhdfh.com/zyloprim-allopurinol-brb/]zyloprim drug[/url] fall out [url=http://gcxhdfh.com/ghb-furanone-latest-new-alterantives/]ghb rehab amp treatment centers[/url] the impasse [url=http://gcxhdfh.com/tobradex-ophth-oint/]tobradex ophthalmic ointment[/url] she inquired [url=http://gcxhdfh.com/5-post-softtabs-zenegra/]softtabs deal online[/url] already made [url=http://gcxhdfh.com/10-mg-claritin-twice-daily/]active ingredient claritin[/url] longer existed [url=http://gcxhdfh.com/chewable-pepcid-complete-free-shipping/]6 pepcid at one time[/url] state for [url=http://gcxhdfh.com/coumadin-following-aortic-valve-injury/]passonflower and coumadin[/url] elegant cut [url=http://gcxhdfh.com/metformin-and-actos-together/]actos and fallidos and freud[/url] must come [url=http://gcxhdfh.com/rivotril-clonazepam/]normal dose of clonazepam[/url] this least [url=http://gcxhdfh.com/side-effects-of-nortriptyline/]nortriptyline dosing[/url] developed many [url=http://gcxhdfh.com/atrovent-related-to-atropine/]atrovent unidose[/url] raco still [url=http://gcxhdfh.com/sale-of-opium-act/]grow opium indoors[/url] reasonably nice [url=http://gcxhdfh.com/topical-doxazosin/]find the medicine cardura or doxazosin[/url] rent isn [url=http://gcxhdfh.com/actonel-fosamax-compare/]actonel and heartburn[/url] arrow shoved [url=http://gcxhdfh.com/pozen-and-naprosyn/]naprosyn and tylenol[/url] this setting [url=http://gcxhdfh.com/naprosyn-abuse/]naprosyn effects[/url] have delivered liked.

    Cagadyik on Friday May 29th, 2009 at 4:34 am
  91. [...] Create astonishing iCal-like calendars with jQuery [...]

    21 Stylish CSS/jQuery Solutions To Beautify Your Web Designs @ SmashingApps on Friday June 5th, 2009 at 6:02 pm
  92. [...] Create astonishing iCal-like calendars with jQuery [...]

    21 Stylish CSS/jQuery Solutions To Beautify Your Web Designs | WORDPRESS-TEMPLATES-PLUGINS-RSS | 21 Stylish CSS/jQuery Solutions To Beautify Your Web Designs >>> on Friday June 5th, 2009 at 7:22 pm
  93. [...] Create astonishing iCal-like calendars with jQuery [...]

    21 Stylish CSS / jQuery Beautify solutions for your web design | Internet Resources on Saturday June 6th, 2009 at 7:20 pm
  94. [...] Create astonishing iCal-like calendars with jQuery [...]

    21 Stylish CSS/jQuery Solutions To Beautify Your Web Designs | Programming Blog on Sunday June 7th, 2009 at 1:38 am
  95. [...] Create astonishing iCal-like calendars with jQuery This is really useful tutorial to create astonishing iCal-like calendars with jQuery. [...]

    21 Beautiful CSS/ jQuery Solutions For Your Websites » De Web Times - Sharing Useful Resources. on Monday June 8th, 2009 at 9:56 am
  96. [...] Link to article VN:F [1.4.2_694]please wait…Rating: 0.0/10 (0 votes cast) [...]

    i-calendar look-a-like voor op je website met jquery | on Tuesday June 9th, 2009 at 12:28 pm
  97. Can this project also support mysql & php

    hindusthan on Wednesday June 10th, 2009 at 7:40 am
  98. [...] van pop-up tevoorschijn. Dit past goed bij het uiterlijk van de kalender zelf. Bekijk de demo of download gratis de kalender [...]

    Jaboo — iCal Kalender met jQuery on Thursday June 11th, 2009 at 12:12 pm
  99. Thanks for the nice and astonishing code..^^ nice..keep it up..it makes me understand more on CSs and jQuery..i’m a beginner in web design..you’ve give me inspiration..tq ^^

    Looking for next tutorial..^_^

    brainstomers on Thursday June 18th, 2009 at 5:43 am
  100. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    Hello world! « Trungquy’s Blog on Saturday June 20th, 2009 at 7:46 am
  101. A great script that had to make it to out resource, scripts, tutorials site at http://www.freshtuts.net website, there are other scripts and tutorials know-how’s on our site, we would recommend visitors to bookmark it.

    Thanks for a great script that deserves to be widely used.

    All the best Team @ http://www.freshtuts.net

    Freshtuts.net on Sunday June 28th, 2009 at 9:41 pm
  102. Thanks for the nice and astonishing code. thank u so much

    oyun ouna on Tuesday June 30th, 2009 at 11:52 am
  103. [...] view demo [...]

    Blog.Skynapse » DatePickers & Calendars on Thursday July 2nd, 2009 at 9:37 am
  104. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    70 New, Useful AJAX And JavaScript Techniques « Ramesh on Thursday July 9th, 2009 at 2:34 pm
  105. nice work thnx

    klip izle on Friday July 10th, 2009 at 10:28 pm
  106. Great job! Really Nice!

    Congratulations and Thanks :D

    Rodrigo on Wednesday July 15th, 2009 at 1:52 am
  107. Does anybody know a good joomla plugin for implementing calendars?

    Dani on Monday July 20th, 2009 at 9:11 pm
  108. Looks good

    Balaji on Sunday July 26th, 2009 at 4:09 pm
  109. redasazaw on Monday July 27th, 2009 at 6:45 pm
  110. hi thanx a lot it’s truly an amazing calendar and am using it in a project am working at and i exported the cal through php and i linked the month and loaded the calendar with ajax the problem is once i load it with ajax the effect of “datehasevent” is not working please see if you can help me http://www.alwatanonline.com/aganda.php?lang=en the first load you can see an event on 26 but press jul from the menu and it won’t work any more thanx any way

    metalsy on Wednesday July 29th, 2009 at 4:34 pm
  111. [...] Create astonishing iCal-like calendars with jQuery [...]

    30 Tutorials Combining Both Wordpress and jQuery : Speckyboy Design Magazine on Thursday August 6th, 2009 at 6:14 pm
  112. [...] Create astonishing iCal-like calendars with jQuery [...]

    30 Tutorials Combining Both Wordpress and jQuery | huibit05.com on Sunday August 9th, 2009 at 4:55 am
  113. [...] iCal-like Calendar (CSS+jQuery)A great tutorial for creating a dynamic calendar resembling the iCal application. [...]

    Mastering CSS, Part 2: Advanced Techniques and Tools | CSS | Smashing Magazine on Monday August 10th, 2009 at 2:41 pm
  114. [...] iCal-like Calendar (CSS+jQuery)A great tutorial for creating a dynamic calendar resembling the iCal application. [...]

    Mastering CSS, Part 2: Advanced Techniques and Tools « Tech7.Net on Monday August 10th, 2009 at 4:12 pm
  115. [...] iCal-like Calendar (CSS+jQuery)A great tutorial for creating a dynamic calendar resembling the iCal application. [...]

    Mastering CSS, Part 2: Advanced Techniques and Tools on Monday August 10th, 2009 at 4:19 pm
  116. [...] iCal-like Calendar (CSS+jQuery)A great tutorial for creating a dynamic calendar resembling the iCal application. [...]

    Wordpress Blog Services - Mastering CSS, Part 2: Advanced Techniques and Tools on Tuesday August 11th, 2009 at 3:29 am
  117. Create astonishing iCal-like calendars with jQuery

    jatropha, jatropha seed on Tuesday August 11th, 2009 at 6:41 am
  118. Yeah! the great one tutorial!!

    Claz on Tuesday August 11th, 2009 at 8:24 am
  119. [...] iCal-like Calendar (CSS+jQuery)A great tutorial for creating a dynamic calendar resembling the iCal application. [...]

    Shopping Mall » Mastering CSS, Part 2: Advanced Techniques and Tools on Tuesday August 11th, 2009 at 9:42 am
  120. Excellent!

    Brad Sherrill on Tuesday August 11th, 2009 at 3:56 pm
  121. Its probably one of the best Calender UI I’ve seen on web. The great thing is you can easily apply some other theme just making a few changes in CSS. Thanks for writing such a great tutorial.

    Smashing Themes on Thursday August 13th, 2009 at 9:19 am
  122. Amazing!

    Fernando Filho on Monday August 17th, 2009 at 3:36 pm
  123. [...] Create astonishing iCal-like calendars with jQuery [...]

    30 Tutorials Combining Both Wordpress and jQuery | .::tek3D Weblog::. on Tuesday August 18th, 2009 at 2:35 pm
  124. [...] iCal-like Calendar (CSS+jQuery)A great tutorial for creating a dynamic calendar resembling the iCal application. [...]

    Advertisers Blog » Blog Archive » Mastering CSS, Part 2: Advanced Techniques and Tools on Saturday August 22nd, 2009 at 6:24 pm
  125. How to embed the calendar into another page? I tried using the php include(”calendar.php”); function, it works but when you hover the mouse over an event, it does not show it completely. Even though I have fixed the problem in the css file. (only does this in IE, not FireFox).

    H. Afridi on Monday August 24th, 2009 at 9:05 am
  126. hi,

    i would like to use the calendar on a website, but when i try to put in inside a html table, the css file is filling all the td on the screen with pictures of the calendar. Do you know how can i fix it?

    sebastian on Wednesday August 26th, 2009 at 1:59 am
  127. is there any add on with this calendar which uses a mysql db for the events?

    Chri.s on Friday August 28th, 2009 at 3:05 pm
  128. thanks , very nice shared

    temizlik on Tuesday September 1st, 2009 at 11:28 pm
  129. [...] this article: Create astonishing iCal-like calendars with jQuery | Stefano Verna Comments0 Leave a Reply Click here to cancel [...]

    Create astonishing iCal-like calendars with jQuery | Stefano Verna on Saturday September 5th, 2009 at 8:16 am
  130. Looks super cool!

    Patrick Wolf on Saturday September 5th, 2009 at 7:27 pm
  131. [...] iCal-like Calendar (CSS+jQuery) A great tutorial for creating a dynamic calendar resembling the iCal application. [...]

    » Mastering CSS, Part 2: Advanced Techniques and Tools endo – luxury coding on Sunday September 6th, 2009 at 11:36 am
  132. Very cool calendar!! Nice Job!!

    Natalia on Wednesday September 9th, 2009 at 3:24 pm
  133. [...] посмотреть календарь в действии, скрин Сам календарь можно взять отсюда. Как поставить себе. Открываем файл functions.php для вашей [...]

    Alex Volkov » Архив » Календарь в стиле iCal для архивов в wordpress on Wednesday September 9th, 2009 at 9:24 pm
  134. Thanks for providing this info, it is really great to use Jquery.

    Web development lucknow on Wednesday September 16th, 2009 at 12:40 pm
  135. [...] 2. Astonishing iCal-like Calendar [...]

    9 Useful jQuery Calendar And Date Picker Plugins For Web Designers on Sunday September 20th, 2009 at 6:09 pm
  136. [...] 2. Astonishing iCal-like Calendar [...]

    9 Useful jQuery Calendar And Date Picker Plugins For Web Designers | MisrIT Reader (Beta) on Sunday September 20th, 2009 at 11:55 pm
  137. [...] 2. Astonishing iCal-like Calendar [...]

    9 Useful jQuery Calendar And Date Picker Plugins For Web Designers | huibit05.com on Monday September 21st, 2009 at 3:24 pm
  138. [...] 2. Astonishing iCal-like Calendar [...]

    9个实用jQuery日历插件 | 路可-WEB前端开发 on Tuesday September 22nd, 2009 at 1:42 pm
  139. [...] 2. Astonishing iCal-like Calendar [...]

    9 Useful jQuery Calendar And Date Picker Plugins For Web Designers | Download E-Books Free Video Training Courses Softwares on Wednesday September 23rd, 2009 at 2:04 am
  140. [...] 2. Astonishing iCal-like Calendar [...]

    9 Useful jQuery Calendar And Date Picker Plugins For Web Designers | pc-aras on Friday September 25th, 2009 at 3:48 pm
  141. [...] Create astonishing iCal-like calendars with jQuery [...]

    30 Tutorials Combining Both jQuery and Wordpress on Saturday September 26th, 2009 at 10:13 am
  142. [...] Create astonishing iCal-like calendars with jQuery [...]

    30 Tutorials for Using JQuery in Wordpress | oOrch Blog on Sunday September 27th, 2009 at 5:54 pm
  143. This is awesome stuff.. I need to look in to this. May be i can get it to work as sidebar calendar with post links.

    Anyways thanks a lot.

    Global Issues on Monday October 5th, 2009 at 4:12 pm
  144. [...] Haz clic aquí para visitar el sitio oficial de Astonishing iCal-like Calendar » [...]

    jQuery: 9 plugins para crear calendarios y seleccionadores de fecha - elWebmaster.com on Thursday October 8th, 2009 at 3:21 pm
  145. [...] Astonishing iCal-like Calendar [...]

    Collection of AJAX Calendar / Datepicker Plugins & Scripts - DoNotYet.com on Sunday October 11th, 2009 at 3:07 pm
  146. I have been messing with it and I would like to add an event title to the days but when I do the pop-up no longer works. What part of the code should I alter?

    Marzy on Monday October 12th, 2009 at 8:32 pm
  147. [...] Create astonishing iCal-like calendars with jQuery | Stefano Verna [...]

    Beat Machine Downloads Are Very Popular - The Blog Planet on Tuesday November 10th, 2009 at 1:30 pm
  148. [...] Create astonishing iCal-like calendars with jQuery [...]

    20 Most interesting jQuery Plugins – February 2009 « ES Websoft on Saturday November 14th, 2009 at 8:51 am
  149. hiii, with the next code its possible to create dinamically.

    it could be improve of course!! =)

        DateTime date = new DateTime(2009, 12, 10);
        // DateTime date = DateTime.Now;
        int day = date.Day;
        int year = date.Year;
        int month = date.Month;
    
        // cantidad de dias
        int daysInMonth = DateTime.DaysInMonth(year, month);
    
        // primer dia del mes
        DateTime firstDayInMonth = new DateTime(year, month, 1);
        // numero de dia de la primer semana del mes
        int numberDayfromFirstWeekOfMonth = Convert.ToInt32(firstDayInMonth.DayOfWeek);
    
        // ultimo dia del mes
        DateTime lastDayInMonth = firstDayInMonth.AddMonths(1).AddDays(-1);
        // numero de dia de la ultima semana del mes
        int numberDayfromLastWeekOfMonth = Convert.ToInt32(lastDayInMonth.DayOfWeek);
    
        // dias antes
        int beforeDays = (numberDayfromFirstWeekOfMonth);
        int afterDays = (6 - numberDayfromLastWeekOfMonth);
    
        Table table = new Table();
        table.CellSpacing = 0;
    
        TableRow row = new TableRow();
        TableCell cell = new TableCell();
    
        int c = 1;
        bool existsBeforeDays = false;
        bool existsAfterDays = false;
    
        for (int i = 0; i < daysInMonth + beforeDays + afterDays; i++)
        {
            if ((i - beforeDays - afterDays + 1) <= daysInMonth)
                cell = new TableCell();
    
            if (i >= beforeDays && (i - beforeDays + 1) <= daysInMonth)
            {
                cell.Text = Convert.ToString(i - beforeDays + 1);
    
                if (i - beforeDays + 1 == day)
                    cell.Attributes.Add("class", "today");
            }
    
            // dias antes
            if (i < beforeDays && !existsBeforeDays)
            {
                existsBeforeDays = true;
                cell.ColumnSpan = beforeDays;
                cell.Attributes.Add("class", "padding");
                cell.Text = "";
                row.Cells.Add(cell);
                i = beforeDays -1 ;
                c = beforeDays;
            }
    
            // dias despues
            if (i >= daysInMonth + beforeDays && afterDays > 0 && !existsAfterDays)
            {
                existsAfterDays = true;
                cell.ColumnSpan = afterDays;
                cell.Attributes.Add("class", "padding");
                cell.Text = "";
                row.Cells.Add(cell);
            }
    
            if ((beforeDays > 0 && i >= beforeDays && i <= daysInMonth + beforeDays)
                || (afterDays > 0 && i >= beforeDays && i <= daysInMonth))
                row.Cells.Add(cell);
    
            if (afterDays == 0 && afterDays == 0)
                row.Cells.Add(cell);
    
            if (c == 7)
            {
                table.Rows.Add(row);
                row = new TableRow();
                c = 0;
            }
            c++;
        }
    
        test.Controls.Add(table);
    
    suirik on Wednesday November 18th, 2009 at 8:22 pm
  150. [...] 4.Create Astonishing iCal-like Calendars With jQuery [...]

    40 Free Amazing jQuery Plugins and Tutorials With Demos | DesignBeep on Saturday November 21st, 2009 at 5:41 pm
  151. [...] 4.Create Astonishing iCal-like Calendars With jQuery [...]

    40 Free Amazing jQuery Plugins and Tutorials With Demos « VECTOR Tutorial on Monday November 23rd, 2009 at 1:18 am
  152. :S Create astonishing iCal-like calendars with jQuery

    beşiktaş on Wednesday November 25th, 2009 at 3:13 am
  153. [...] 4.Create Astonishing iCal-like Calendars With jQuery [...]

    40 #Free Amazing #jQuery #Plugins and #Tutorials With Demos | Master Design on Monday November 30th, 2009 at 4:51 am
  154. [...] Do you, like many other people, love Apple’s cool and functionnal design? If you answered “yes” to the previous question, there’s no doubt that you will enjoy this tutorial about creating an “iCal-like” calendar for your website. » Read tutorial [...]

    10 front-end techniques to improve your site usability on Monday November 30th, 2009 at 5:30 pm
  155. [...] Do you, like many other people, love Apple’s cool and functionnal design? If you answered “yes” to the previous question, there’s no doubt that you will enjoy this tutorial about creating an “iCal-like” calendar for your website. » Read tutorial [...]

    10 front-end techniques to improve your site usability | meshdairy on Monday November 30th, 2009 at 7:36 pm
  156. [...] Do you, like many other people, love Apple’s cool and functionnal design? If you answered “yes” to the previous question, there’s no doubt that you will enjoy this tutorial about creating an “iCal-like” calendar for your website. » Read tutorial [...]

    10 front-end techniques to improve your site usability | Programming Blog on Monday November 30th, 2009 at 9:29 pm
  157. [...] Do you, like many other people, love Apple’s cool and functionnal design? If you answered “yes” to the previous question, there’s no doubt that you will enjoy this tutorial about creating an “iCal-like” calendar for your website. » Read tutorial [...]

    10 front-end techniques to improve your site usability « Creativity Flows on Monday November 30th, 2009 at 11:20 pm
  158. Thanks for the tutorial. I am sure to check out the Event Calendar plugin for Wordpress.

    Linux And Friends on Tuesday December 1st, 2009 at 11:08 am
  159. I’ve been testing the event calendar for a few days now, & it’s really impressive - thanks for the great work. I do have one little problem that you might be able to help with… I’m a total noob to php & jquery, so please bear with me if this question seems a little obvious; I run a French website, & I’d like to display the names of the months in French (obvious so far). The days of the week are no problem, I just changed them in the html, but there doesn’t seem to be any way of translating the month to another language, at least not for someone with my limited skills. Any help you could give would be greatly appreciated.

    Randall Roberts on Wednesday December 2nd, 2009 at 7:20 pm
  160. This is very useful and handy indeed. Your tutorial is easy to understand.

    The combination of HTML, CSS and jQuery goes very well. Sleek!

    However, I will still stick to my Google Calendar for now because I need the synchronize feature.

    Nevertheless, thank you Stefano for this post and hope to see more posting from you soon!

    free online adventure games on Thursday December 3rd, 2009 at 12:57 pm
  161. very good shared , thanks

    Şehirlerarası Nakliyat on Saturday December 5th, 2009 at 1:44 am
  162. [...] Create astonishing iCal-like calendars using jQuery Do you, like many other people, love Apple’s cool and functionnal design? If you answered “yes” to the previous question, there’s no doubt that you will enjoy this tutorial about creating an “iCal-like” calendar for your website. » Read tutorial [...]

    10 front-end techniques to improve your site usability | Programming Blog on Saturday December 5th, 2009 at 10:12 pm
  163. [...] Do you, like many other people, love Apple’s cool and functionnal design? If you answered “yes” to the previous question, there’s no doubt that you will enjoy this tutorial about creating an “iCal-like” calendar for your website. » Read tutorial [...]

    10 front-end techniques to improve your site usability | Gacik Design Blog on Sunday December 6th, 2009 at 1:17 pm
  164. This is really very good… Thanks

    indialike.com on Tuesday December 8th, 2009 at 2:52 pm
  165. [...] 4.Create Astonishing iCal-like Calendars With jQuery [...]

    40 Free Amazing jQuery Plugins and Tutorials With Demos | Afif Fattouh - Web Specialist on Sunday December 13th, 2009 at 2:53 pm
  166. [...] Do you, like many other people, love Apple’s cool and functional design? If you answered “yes” to the previous question, there’s no doubt that you will enjoy this tutorial about creating an “iCal-like” calendar for your website. » Read tutorial [...]

    Han Auto Parts » 10 front-end techniques to improve your site usability on Monday December 21st, 2009 at 1:52 am
  167. [...] 2. Astonishing iCal-like Calendar [...]

    9 Useful jQuery Calendar And Date Picker Plugins For Web Designers « Adventures of Sudheer on Monday December 21st, 2009 at 1:06 pm
  168. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    70 Great, Useful AJAX And JavaScript Techniques « Social-Press on Tuesday December 29th, 2009 at 11:38 pm
  169. Really nice calendar, but is there a way to make managing the events easier? Like a CMS.

    webb on Saturday January 16th, 2010 at 6:29 am
  170. thnx admın

    Favoripartner Escort on Saturday January 16th, 2010 at 11:50 am
  171. [...] Do you, like many other people, love Apple’s cool and functional design? If you answered “yes” to the previous question, there’s no doubt that you will enjoy this tutorial about creating an “iCal-like” calendar for your website. » Read tutorial [...]

    10 front-end techniques to improve your site usability | moreInet.com | Webdesign, Graphic Design Service in Pattaya on Thursday January 21st, 2010 at 10:32 am
  172. [...] Create astonishing iCal-like calendars with jQuery According to my web designer experience, one of the most common requests from clients when it comes to Wordpress personalization, is to add a basic event calendar to their website. Finding a good place to position a big table like a calendar within your Wordpress template is always a taught work. In addition, the <table> tag itself is often quite difficult to style in a good way. [...]

    04/01/2010 : jQuery Day | Dev | My Daily Top RSS Selection on Thursday January 21st, 2010 at 1:43 pm
  173. good sharing, thank for all

    film izle on Thursday January 21st, 2010 at 11:15 pm
  174. [...] Create astonishing iCal-like calendars with jQuery [...]

    20 Most interesting jQuery Plugins – February 2009 « Nulls on Sunday January 24th, 2010 at 11:31 am
  175. [...] Create astonishing iCal-like calendars with jQuery Similar to the iPhone Calendar application, with event description that shows up on mouse hover. The trickiest part is making your images seamless and using a single image for all the graphics whenever possible to decrease download time. Check out the demo here. [...]

    Neuron Technologies Inc – 70 New, Useful AJAX And JavaScript Techniques on Monday January 25th, 2010 at 12:22 am
  176. thanks so much admin

    escort bayan on Monday January 25th, 2010 at 8:51 pm
  177. thanks admin

    escort bayan on Monday February 1st, 2010 at 4:12 am
  178. [...] Create astonishing iCal-like calendars with jQuery | Stefano Verna [...]

    Cure Su Ansiedad E-book. | 7Wins.eu on Monday February 1st, 2010 at 4:18 am
  179. thanks for all,good sharing

    Reklam on Tuesday February 2nd, 2010 at 1:36 pm
  180. nice post very good job

    Adsl Başvuru on Wednesday February 3rd, 2010 at 12:06 pm
  181. thnx for all

    Beyaz Eşya on Thursday February 4th, 2010 at 11:34 am
  182. You should make special class for your styled table and their elements. When you create table to display data on your page and you actually has imported this style sheet tables looks terribly shitty. That’s pretty mess way of using CSS!

    RobertG on Thursday February 4th, 2010 at 5:44 pm
  183. thanks all admin

    escort bayan on Wednesday February 10th, 2010 at 7:57 am
  184. thanks admin mucux

    eskort bayan on Wednesday February 10th, 2010 at 7:57 am
  185. [...] Tutorial | Demo [...]

    12 Most Popular jQuery Tutorials In 2009 | JoySpan Magazine on Sunday February 14th, 2010 at 4:28 pm
  186. this is a very good article & it really help me. Thank you

    medical school on Monday February 15th, 2010 at 5:52 am
  187. Wow!!!!!!! I have such a big woody

    JungleMan on Thursday February 18th, 2010 at 5:34 pm
  188. [...] recently came across this lovely calendar, built by Stefano Verna in standard HTML, jQuery and [...]

    Adding PHP functionality to Stefano Verna’s iCal-like calendar | Frecosse Website Design on Saturday February 20th, 2010 at 10:17 am
  189. [...] Create astonishing iCal-like calendars with jQuery According to my web designer experience, one of the most common requests from clients when it comes to Wordpress personalization, is to add a basic event calendar to their website. Finding a good place to position a big table like a calendar within your Wordpress template is always a taught work. In addition, the <table> tag itself is often quite difficult to style in a good way. [...]

    5 articles to boost your jQuery skill | My Daily Top RSS Selection on Tuesday February 23rd, 2010 at 11:39 am
  190. thnx

    Mutfak Dolabı on Friday March 5th, 2010 at 5:07 pm
  191. Hi. I’m going to implement this calander into my website but the issue is, do I have to manually set the date every day? Lol

    iMayne on Friday March 5th, 2010 at 8:35 pm
  192. sesli sohbet on Saturday March 6th, 2010 at 4:41 pm
  193. Hi, How can i use the .live() function in the coda.js? cause i’m getting the calenday using jquery ajax thx

    Fadi on Thursday March 11th, 2010 at 2:24 pm
  194. [...] Create astonishing iCal-like calendars with jQuery [...]

    30 Tutorials Combining Both Wordpress and jQuery | Coyot [at] CanalCoffee.com : WordPress on Sunday March 14th, 2010 at 3:49 am
  195. I’d like to use this calendar on my site.

    Pavel on Tuesday March 16th, 2010 at 6:10 am

Leave a Reply