How to reload CSS without reloading the page using JavaScript ? Last Updated : 02 Jun, 2020 Comments Improve Suggest changes 1 Likes Like Report While working with CSS, you might have come across situations where you made some changes in the stylesheet and had to do a hard reload to see the changes reflected in your browser. Or maybe the style depends on some user interaction and you don't wish to hard reload the page every time. Sometimes you don't want to lose the changes made using the Dev Tools and simply wish to reload the CSS. Other times the CSS is so stubbornly cached that even refreshing the entire page doesn't help. Today we will learn how to reload the CSS without reloading the entire page. Using JavaScript, we can append a new version number to the CSS file path as a query parameter every time you update the CSS. By adding a different query parameter to a URL, the browser handles it as a unique URL and caches it separately allowing you to have the updated version loaded. You can attach this function to a button (or a combination of keyboard keys as a shortcut) that reloads CSS every time it is clicked. We can use the current date-time as the version number since it will always be a new and unique string. Syntax: Add the created CSS file like the below format. <link rel="stylesheet" type="text/css" href="css/style.css?version=#"> index.html with JavaScript code: html <!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> <h1>GeeksforGeeks</h1> <b>Reloding CSS without relodaing the page</b> <br><br> <button onclick="refreshCSS()"> Refresh CSS </button> <script> refreshCSS = () => { let links = document.getElementsByTagName('link'); for (let i = 0; i < links.length; i++) { if (links[i].getAttribute('rel') == 'stylesheet') { let href = links[i].getAttribute('href') .split('?')[0]; let newHref = href + '?version=' + new Date().getMilliseconds(); links[i].setAttribute('href', newHref); } } } </script> </body> </html> CSS file style.css: css /* Coloring h1 tag */ h1 { color: green; } /* Button styling */ button { width: 200px; background-color: purple; color: black; border-radius: 10px; padding: 10px; font-weight: bold; } Output: You can add this function as a JavaScript bookmarklet in your browser which will reload the CSS every time you click on it. javascript:(function(){ let links = document.getElementsByTagName('link'); for (let i = 0; i < links.length; i++) { if (links[i].getAttribute('rel') == 'stylesheet') { let href = links[i].getAttribute('href').split('?')[0]; let newHref = href + '?version=' + new Date().getMilliseconds(); console.log(newHref) links[i].setAttribute('href', newHref); } } })(); Create Quiz Comment I ihsavru Follow 1 Improve I ihsavru Follow 1 Improve Article Tags : JavaScript Web Technologies JavaScript-Questions Explore JavaScript BasicsIntroduction to JavaScript4 min readVariables and Datatypes in JavaScript6 min readJavaScript Operators5 min readControl Statements in JavaScript4 min readArray & StringJavaScript Arrays7 min readJavaScript Array Methods7 min readJavaScript Strings5 min readJavaScript String Methods9 min readFunction & ObjectFunctions in JavaScript5 min readJavaScript Function Expression3 min readFunction Overloading in JavaScript4 min readObjects in JavaScript4 min readJavaScript Object Constructors4 min readOOPObject Oriented Programming in JavaScript3 min readClasses and Objects in JavaScript4 min readWhat Are Access Modifiers In JavaScript ?5 min readJavaScript Constructor Method7 min readAsynchronous JavaScriptAsynchronous JavaScript2 min readJavaScript Callbacks4 min readJavaScript Promise4 min readEvent Loop in JavaScript4 min readAsync and Await in JavaScript2 min readException HandlingJavascript Error and Exceptional Handling6 min readJavaScript Errors Throw and Try to Catch2 min readHow to create custom errors in JavaScript ?2 min readJavaScript TypeError - Invalid Array.prototype.sort argument1 min readDOMHTML DOM (Document Object Model)8 min readHow to select DOM Elements in JavaScript ?3 min readJavaScript Custom Events4 min readJavaScript addEventListener() with Examples9 min readAdvanced TopicsClosure in JavaScript4 min readJavaScript Hoisting6 min readScope of Variables in JavaScript3 min readJavaScript Higher Order Functions7 min readDebugging in JavaScript4 min read Like