You can use below java script to delete all the cookies.
function deletecookies()
{
var cookies = document.cookie.split(";");
for(var i=0; i < cookies.length; i++) {
var equals = cookies[i].indexOf("="),
name = equals > -1 ? cookies[i].substr(0, equals) : cookies[i];
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT";
}
alert(document.cookie);
}
Tuesday, December 13, 2011
Saturday, February 19, 2011
Creating Ad-Hoc Wireless network
Hi.
You dont need a wireless router in your home to create an wireless network. Following this video will help you to create an wireless network in your home.
I have a reliance wirless broadband at my home and there are no routers in market that supports usb mobile broadband modem.
I explored an option in ubuntu 10.10 that helped me to create a wireless network with out router. Now I am able to share internet across my wifi devices like ipod,mini and old laptop with out router.
My broad band service:
Reliance net connect.
Hope my video helps.
Balaji
You dont need a wireless router in your home to create an wireless network. Following this video will help you to create an wireless network in your home.
I have a reliance wirless broadband at my home and there are no routers in market that supports usb mobile broadband modem.
I explored an option in ubuntu 10.10 that helped me to create a wireless network with out router. Now I am able to share internet across my wifi devices like ipod,mini and old laptop with out router.
My broad band service:
Reliance net connect.
Hope my video helps.
Balaji
Subscribe to:
Posts (Atom)