Skip to Menu

This fixes Q tags so that they display properly (i.e. are enclosed in quotation marks) in Internet Explorer.

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. This is a quote. Aliquam vel felis quis pede vestibulum sollicitudin.

function fixQTags()
{
	if($.browser.msie)
	{
		$("q").prepend("“").append("”");
	}
}
// execute fixQTags when page is ready
$(fixQTags);