5 Free Alternatives to iTunes for your iPod / iPhone

Yes, other than iTunes, there are few more softwares too which can manage your iPod/iPhone efficiently. iTunes at times can have compatibility issues, like if you are on Linux or an older windows like Windows XP SP1, then iTunes just wont install for you. Also, iTunes is a heavy tool, where most of it’s alternatives are lite applications. Below are 5 Free iTunes Alternatives for your iPod / iPhone.

Note: Please be careful when using these tools, you might lose all of your iPod data, also, these softwares are not very good in syncing your iPod but do great in manually managing your iPod. Also, some of these might not support new iPods(Like iPod Touch) or new iPhones.

Winamp


Winamp Media Player - MP3  Video  and Music Player - Winamp

Songbird


SongBird

SharePod


SharePod

YamiPod


YamiPod

Floola


Floola

Easiest way to redirect your website to iPhone/iPod Touch/iPad Version

Recently I had to redirect one of the website to its iPhone version, I quickly googled, there are dozens of sites which tell in dozens of ways for doing it. However, I wasn’t very impressed by any, so came up with my own end thing.
There are few ways, mainly you either use JavaScript or php.

I will go with JavaScript, since not all sites are php, and they can be handled more easily.

You can add the below JavaScript inside the of your website to redirect it to its iPhone version.

{code type=HTML}<script language=javascript>
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
{
location.replace(“iPhone/iPod_Version”);
}
</script>{/code}
Of course replace iPhone/iPod_Version with the URL of iPhone/iPod Touch version.

You can also add another conditional for iPad, which makes it.

{code type=HTML}<script language=javascript>
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
{
location.replace(“iPhone/iPod_Version”);
}
else if(navigator.userAgent.match(/iPad/i))
{
location.replace(“iPad_Version”);
}
</script>{/code}

In most cases iPad Version will be different from iPod/iPhone version(because of width). In case they are all the same, use

{code type=HTML}<script language=javascript>
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i)))
{
location.replace(“iPhone/iPad/iPod_Version”);
}
</script>{/code}

Running website on full screen(Available in iOS 2.1 and later)

If you will like your website to run on full screen, you can additionally add the below to header

{code type=HTML}

{/code}

The content=”yes” makes it run on full screen, you can always toggle this.

Disabling automatic detection of phone numbers(Available in iOS 1.0 and later)

By default Safari browser converts phone numbers like string into a link that calls the number.

{code type=HTML}

{/code}

By using content=”telephone=no” you are disabling this feature, you can toogle this too.

There are few more additional tags, you can check them out here .
Hope this helps you.