Wednesday, April 8, 2009

Tuesday, March 17, 2009

301 mod_rewrite redirect

If you want to redirect your www less domain name, just copy and paste this two lines into your .htaccess file.

rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]

Sunday, March 8, 2009

jQuery pngFix problem

I tried to use a jquery pngFix but it didn't work... i was angry when i tried every variation.
I found the wrong line in the jquery selector.

I had to change this line

......find("img[@src$=.png]")......

to this

......find("img[src$='.png']")......

I used jquery 1.3.1 and jquery-ui-personalized-1.6rc6.min.js

so If you don't know why doesn't it work, try this one :)

You can download the source from this site: http://jquery.andreaseberhard.de/pngFix/

Tuesday, March 3, 2009

Welcome!

Hey!
Here is my first post... :)