mooSlideBox 3

The mooSlideBox v3 is a small and slim ajax based extension or replacement of the common “lightbox” that can be found on nearly every page.
This lightbox clone works in IE 6/7, Opera and Firefox.

Visit mooSlideBox WebSite

Nine Javascript Gotchas

by Patrick Fitzsimmons

1) Comma Caused Coruption

<script>
var theObj = {
city : “Boston”,
state : “MA”,
}
</script>

Notice the comma after “MA”? It will be the source of many woes. Firefox will pay it no heed, but it will create a syntax error in IE. Worst of all, IE will not tell you where the actual bug is. The only soution is to scan through your entire 2,500 line javascript file trying to find that extra comma.

Read the rest of this entry »

MySQL Database Backups on Site!!! -> Php

Here’s an attachment script that is supposed to do that (not tested by DeleDuro!!!).

or you can try an open source backup software like Zmanda:

Visit Zmanda Website

Data Communication between JavaScript and Adobe Flash Movie

Posted by Hitesh Agrawal

Passing data to Adobe Flash Movie using JavaScript
In Web2.0 arena we frequently use Adobe Flash Movie and JavaScript in our web page. We often has the requirement to pass data to the Adobe Flash movie at runtime.

Read the rest of this entry »

CSS Reset

Published by Dave
 

There’s plenty of different reset methods already available and I’ve been using Eric Meyer’s method for some time now but have started to realize that in most projects, I only use a fraction of the styles specified and much more often find myself rewriting a whole different set of styles that I use in all my projects.

Therefore, I’ve decided that it’s going to be more worthwhile using Meyer’s CSS as a starting point but putting together my own starter template which I can use for all my projects which I’d like to give you an insight into.

Visit Website…