[jQuery] Re: $date1 = $('div /')W hat does it mean ?

2009-01-20 Thread Ricardo Tomasi
It's a shortcut for element creation. Like you can do $('body').append('div /') $('div /') gives you a div which is not in the DOM yet You can see that both jQuery objects with the divs ($date1 and $date2) end up appended to #multimonth. On Jan 20, 8:36 am, divsystem divsys...@gmail.com

[jQuery] Re: $date1 = $('div /')W hat does it mean ?

2009-01-20 Thread system div
Ricardo Tomasi thanks 2009/1/20 Ricardo Tomasi ricardob...@gmail.com It's a shortcut for element creation. Like you can do $('body').append('div /') $('div /') gives you a div which is not in the DOM yet You can see that both jQuery objects with the divs ($date1 and $date2) end up