Reputation: 467
Hi I am trying to test js function on this simple html. First run I got error and tried to fix it ,save page and load but alas I get the same old script no changes seen...tried many times...the totally removed the script tag ...but still browser shows my old script on the page with the same old error.....I closed browser and reopened it ...no effect ..tried all browsers..no effect
<!DOCTYPE html>
<html>
<body>
<p>Click the button to list all the items in the array.</p>
<ul id="ull">
</ul>
</body>
</html>
Upvotes: 0
Views: 136
Reputation: 7530
Try hitting CTRL + SHIFT + R if you are using Chrome or Firefox (or CTRL + F5 in Internet Explorer).
This will refresh any JavaScript and CSS that is saved in the browser's cache.
Upvotes: 1