PHP and javascript snippets you can copy and paste.

Showing posts with label javascript mime js_is_image. Show all posts
Showing posts with label javascript mime js_is_image. Show all posts

Thursday, April 12, 2007

js_is_image(ext)

/**
* Returns true if ext is an image extension.
*
* @param string ext.
* return bool
*/
function js_is_image(ext){

var imgExtsArr = new Array();
imgExtsArr.png = true;
imgExtsArr.jpg = true;
imgExtsArr.gif = true;
imgExtsArr.jpeg = true;

return imgExtsArr[ext];

}