1
I have a problem loading styles from one page exclusively in IE9, in other browsers and versions IE10-11 work properly. The page uses Bootstrap 3.1 and another template, so it uses multiple files .css. These files are being compressed because of optimization, however while loading the page only the files .css Bootstrap is being loaded.
I share part of the code where the .css:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<?php
foreach($view->_css as $css){
echo '<link rel="stylesheet" href="'.$css.'">'."\n";
}
foreach($view->_js as $js){
echo '<script src="'.$js.'"></script>'."\n";
}
?>
<title>Alfa</title>
What is the solution?