MSIE Supports p:hover :)

Dive into the source for the css, for browsers that support application/xhtml+xml it is send that way.

This won't work when <![CDATA[ ]]> is used.

Example

Theory of the origins of the human species, Homo sapiens. Modern understanding of human origins is derived largely from the findings of paleontology, anthropology, and genetics, and involves the process of natural selection (see Darwinism). Although gaps in the fossil record due to differential preservation prevent the complete specification of the line of human descent, H. sapiens share clear anatomical, genetic, and historic relationships to other primates. Of all primates, humans bear particularly close affinity to other members of a group known as hominoids, or apes, which includes orangutans, gibbons, gorillas, chimpanzees, and humans. Humans and their immediate ancestors, known as hominids, are notable among hominoids for their bipedal locomotion, slow rate of maturation, large brain size, and, at least among the more recent hominids, the development of a relatively sophisticated capacity for language, tool use, and social activity.

Theory of the origins of the human species, Homo sapiens. Modern understanding of human origins is derived largely from the findings of paleontology, anthropology, and genetics, and involves the process of natural selection (see Darwinism). Although gaps in the fossil record due to differential preservation prevent the complete specification of the line of human descent, H. sapiens share clear anatomical, genetic, and historic relationships to other primates. Of all primates, humans bear particularly close affinity to other members of a group known as hominoids, or apes, which includes orangutans, gibbons, gorillas, chimpanzees, and humans. Humans and their immediate ancestors, known as hominids, are notable among hominoids for their bipedal locomotion, slow rate of maturation, large brain size, and, at least among the more recent hominids, the development of a relatively sophisticated capacity for language, tool use, and social activity.

Javascript code


function phover(){
  if (!document.getElementById) return

  var p = document.getElementsByTagName('p');
  for(var i = 0; i < p.length; i++){
   p[i].onmouseover = function(){
    this.className = 'hover';
   }
   p[i].onmouseout  = function(){
    this.className = '';
   }
  }
}
window.onload = phover;