Tag: IE Problem
Limit character textarea using Jquery
Here we can do, copy this jquery plugins :
jQuery.fn.maxLength = function(max){
this.each(function(){
//Get the type of the matched element
var type = this.tagName.toLowerCase();
//If the type property exists,...
Change IE document default view
If you have problem with CSS view in IE 8, maybe you must try this solution.
Add this tag on head :
<meta http-equiv="X-UA-Compatible" content="IE=8" >
it...