Help ImageUpload External Files Into Different Directory Uploading Files

I f you are going to upload either a .js or .css file into a different directory than where this effect will be (root or top directory), then you need to reconfigure the below part of the code to reflect where this external .js or .css file needs to be called from. For example, if you upload the .js or .css file into a respective directory called jsfiles or cssfiles then the below code would have to reflect this change.

Default .js Code - Root Directory

<script src="filename.js" language="javascript" type="text/javascript"></script>

Reconfigured .js Code

<script src="jsfiles /filename.js" language="javascript" type="text/javascript"></script>

Default .css Code - Root Directory

<link rel="stylesheet" type="text/css" href="filename.css">

Reconfigured .css Code

<link rel="stylesheet"type="text/css"href="cssfiles/filename.css">

Copyright © Consigliere Ltd., All Rights Reserved. 2001-