Tag Archives: match

Recommended Match

Mobile Browser Hack – Android, WebKit and Javascript/AJAX Trim() Functions!

Here’s a quick note on mobile browsers like Android, WebKit. Based on my testing, it seems that string trim() function is not supported.

I was trying to do something like:

if(mystring.trim()==”0″) etc…etc…

That won’t work in mobile browsers for some reason but you can do something like it using match instead: if(mystring.match(/0/)) etc…etc…

I don’t know exactly why trim() isn’t supported fully on mobile browsers but for those of you who have problems with your website that works on desktop browsers but

Click Here to Read Full Article

Leave a comment

Web Programming Hack – How to Redirect based on Domain Name Referrer or IP address!

My friend Josh over at Unconventional Marketing just pinged me via GoogleTalk on how to redirect your web site visitors based on IP address.   Well, I figure this might be great information for others as well so I found a solution.

This method will work well because you can redirect single web pages using PHP instead of using .htaccess.  I think php files are a lot more versatile and useful anyways.

Redirect based on domain:

<? $ref

Click Here to Read Full Article

Leave a comment

The world first mmo e-Sports league finished its European match

Wow. take a look at these guys, they are getting a little serious here with all the games. We will keep an eye on how much the winner wins this year. (OR how much money they get from their sponsors…)

The world’s first MMO e-sports global league (Game and Game World Champion 2007) finished its European final rounds in the Game Convention held in Leipzig on August 23th. Couples, friends and all other mmo lovers got together and showed their best practice for the final eleven who will make it to the grand fi

Click Here to Read Full Article

Leave a comment