Hello, Originally I had wrote my original SMF Package Manager Generator a few years ago. It was sloppy coding, poor JavaScript and relied heavily on the server. Not my absolute best work, but was something I was proud on at the time from my efforts to dive into JavaScripting. However, todays times are different. So …
Month: December 2011
JQuery Week Calendar mouseover events
While working with a plugin for JQuery for week calendars. I came across a very annoying little bug. Using mouseover/out events did not seem to work correctly when hovering over the title and time. It just wouldn’t do what it should of. Well after debugging and messing around for a while, I was able to …
new Date() in javascript
It appears that the date object in javascript can have some variances. I had a bug in my code which was only affecting FireFox users on Windows machines. After some debugging time, I figured out that the date object was returning a differently formated value. These are some examples: FireFox on Windows 7: Wed Dec …
JQuery week calendar reoccurring events
JQuery has a nice plugin called . Very simple to use and I was able to integrate it into the database to handle pulling scheduling data. However I came across one issue. Reoccurring events. Well after scrambling the web, I came to the conclusion that it wasn’t possible in the code by default. So away …