I am working on a asp page and I would like to override "meta http-equiv="X-UA-Compatible" content="IE=8"" with "meta http-equiv="X-UA-Compatible" content="IE=10"" in one of the pages using JavaScript. Is it possible? I have tried the following with no success.
window.onload = function(e){
$('meta[http-equiv="X-UA-Compatible"]').remove();
$('head').append('<meta http-equiv="X-UA-Compatible" content="IE=10">')
}