View Full Version : hide css from save as
mtran
12-14-2006, 08:04 PM
When I use save as on a web page, sometimes the folder includes everything - css, js... and the page is displayed offline exactly the same as I view it online.
But sometimes it's not the case. Why?
Is there a way to hide all those .css, .js... so that these files can't be included in the save as folder?
djr33
12-15-2006, 02:13 AM
Different browsers handle it differently and different ways of including css/js do it differently as well, such as putting them in the source, using external files, or using the css #include (css file) method.
You could look into it and find a way that, by default, at least in some browsers, the external css/js files are not saved with the page, but it is very possible (impossible to stop) the saving of those files if the user wishes to save them.
codeexploiter
01-03-2007, 11:26 AM
<style type="text/css">
@import url(style.css);
</style>
djr33
01-03-2007, 07:11 PM
Ah. @import? That's what I meant with "#include".... oops.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.