Browse by Tags
All Tags »
client side (
RSS)
Sorry, but there are no more tags available to filter with.
A simple javascript will make your Enter key work as Tab. It is useful in large tabular forms. function enterToTab(){ if (event.keyCode==13) event.keyCode=9; } <input type="text" onkeydown="enterToTab()"> Note using onkeydown...
If you need to know if client's browser runs on a Vista machine, run javascript navigator.userAgent or navigator.appVersion and search the returning string for "Windows NT 6.0". If it is there, you are on Vista.
Soon you won't need to go to the server to treat your client-site javascript with some c# calls. Watch this technology, it looks promising: Silverlight . Scott Guthrie: Silverlight opens up a ton of opportunities to build significantly richer client...