I would like to execute rounded corners for text boxes on my pages and the best approach seems to be using jquery. Though they (http://www.atblabs.com/jquery.corners.html) have provided the code (below) and the js files, I do not know how to call the js files from the script provided...any suggestions would be appreciated.
<div style="background-color:#acc; padding:5px" class="rounded">
Simple Example
</div>
<script>$(document).ready( function(){
$('.rounded').corners();
});</script>
I would suspect I could place the above script into my header.php, but how does the script and the class="rounded" know where the js files are? I have placed the js files into a folder called scripts on my main directory.
-Scott