Follow Ohmkumar on Twitter
16
Jul/10
0

Google font API

Amazing option to embed fonts to html documents.
Easy to implement.
Reference: Google Fonts API
Expecting more fonts, also expecting the option to embed our own fonts.

27
Apr/10
0

phpmyadmin – phpminiadmin

phpminiadmin
Another usefull script to administer mySql db via web…

Download

8
Mar/10
0

ie6 PNG fix for CSS background images

ie6 - Internet Explorer 6

Recently i just gone through this excellent script for png fix for ie6, even png images declared in css background.
All you have to do is add these below to lines between tags.

<!–[if ie6]>
<script type=”text/javascript” src=”orpngfix.js”></script>
<![endif]–>

Add the orpngfix.js and clear.gif files in the root folder.
Enjoy :)

21
Dec/09
0

Toggle effect for fade – with jQuery

jQuery
Write the below function first:

jQuery.fn.fadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle'}, speed, easing, callback);
};

After that you can do as usual like:

$(".main").click(function () {
$(".child").fadeToggle("slow");
});

17
Dec/09
0

Trim .php extension using .htaccess

Trim your .php extension in your web application using .htaccess

RewriteEngine on
RewriteRule ^$ index.php
RewriteRule ^([a-zA-Z0-9\-\_/]*)/$ $1/index.php
RewriteRule ^([a-zA-Z0-9\-\_/]*)$ $1.php