I am using CDHtmlDialog
and
want to change the highlight color of option. I added a key to the Windows Registry
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION]"HtmlDlg.exe"=dword:00002af9.
I am using IE11 and in CSS added option:hover {background:#000;} also in my HTML
<html><head><metahttp-equiv="X-UA-Compatible"content="IE=Edge">
<base href="file://D:/Dev/AVBit/AVBit//"/>
<!-- Example assets -->
<script type="text/javascript" src="ajax/JS/jquery-2.0.0.min.js" ></script>
<script type="text/javascript" src="ajax/JS/jquery.jcarousel.min.js"></script>
<script type="text/javascript" src="ajax/JS/jcarousel.ajax.js"></script>
<!-- Shared assets -->
<link rel="stylesheet" type="text/css" href="ajax/CSS/style.css">
<link rel="stylesheet" type="text/css" href="ajax/CSS/ddajax.css">
<title></title>
<script>
var $j = jQuery.noConflict;
</script>
</head>
the HTML works fine with IE11 but on the CDHtmldialog option:hover have no effect. Nither the jQuery has any effect
$('option').hover(function () { alert("hii"); });Is their anything I m missing for registry or any thing need to be set in the code.