javascript - correct HTML pages won't load in IE10 -
i'm editing elses webpage content, changing html files on drive, adding text, comments, wtv. i'm not web designer, way knew it.
on browsers, changes show, on internet explorer, revert old webpage. can't find info old page anywhere on drive holds of content. please steer me in right direction.
if helps, each page starts (this part haven't edited)
<!doctype html> <!--[if lt ie 7]> <html lang="en-us" class="no-js ie6"> <![endif]--> <!--[if ie 7]> <html lang="en-us" class="no-js ie7"> <![endif]--> <!--[if ie 8]> <html lang="en-us" class="no-js ie8"> <![endif]--> <!--[if ie 9]> <html lang="en-us" class="no-js ie9"> <![endif]--> <!--[if gt ie 9]><!--> <html lang="en-us" class="no-js"> <!--<![endif] --> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>this particular pages title</title> <link rel="stylesheet" type="text/css" href="bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="fontawesome/css/font-awesome.min.css" > <link href="style/less/main.css" rel="stylesheet" type="text/css"> <!-- custom css --> <link href="css/business-custom.css" rel="stylesheet"> <script src="jquery.min.js"></script> <!--[if lt ie 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><script src="selectivizr-min.js"></script> <![endif]-->
i think ie uses caching. adding random parameter url caching circumvented.
so e.g. www.mysite.nl?1 , www.mysite.nl?2 etc.
Comments
Post a Comment