Disable back button using Javascript

Jul 26

Some times developers have requirement where they want to stop user’s browser back button functionality. E.g. Any banking application its needed to stop back button for security reasons so user don’t go back to some other page after doing signin and he forgot to logout. Now it can be done in many ways : 1. Open the page in new Window: In this case user...

Read More

Ajax not working in Google chrome but works in Other broswers

Jul 25

Ajax not working in Google chrome but works in Other broswers

Read More

CSS Tips & Tricks – II

Jul 25

this tutorial is about how to achieve cross browser opacity, how to remove the dotted borders from links when performing key navigation and usage of !important attribute in css

Read More

CSS Tips and Tricks – I

Jul 25

Lets start with few CSS tips and Tricks which i think every programmer should know to make his/her application better to work in all browsers. 1. Round Corners without images Its a good trick but still very less used as it is not supported by Internet Explorer. If You are making some application where you don’t care for Internet Explorer and its current...

Read More

Setting Height of Selectbox (Combobox) in IE

Jul 23

IE comes as challenge for web designers. You have to take extra care in designing a website to give it smooth look in Internet Explorer. If you wanna change the height of combo box for designing purpose and if you write down : select{ height:50px; } this will work for all the browsers but for IE it will not work. To make it happen , you have to increase the...

Read More

Tip: IE7 textbox border

Jul 23

if you want to give style to your texbox other then the browser’s default style and for doing so you want to hide the border of your textbox, then you can write down <input type="textbox"  style="border:none" /> this will work in all browsers but will not work for IE7. To avoid this problem you should always write down: <input type="textbox"...

Read More
Page 2 of 212