Saturday, May 16, 2009

Wednesday, May 6, 2009

Hidden page problem in ajax - Jquery

Problem in accessing hidden / remote file directly when using ajax...

http://beski.wordpress.com/2009/05/06/hidden-file-problem-in-ajax/

Tuesday, February 10, 2009

Remove / Hide Scroll Bars

To hide inactive scroll bars set...
overflow: auto;
(When need - will appear)

To hide permanent...
overflow: hidden;

To show...
overflow: scroll;

By this way to hide scroll bar for window use this css...
html, body { overflow: hidden; }


Refer this...
http://www.brunildo.org/test/Overflowxy2.html

Enjoy!