Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a fedora server running apache web server. the server is connected to a home network. i have a laptop connected to the same network. i can enter the ip address of my server into the browser of my laptop and pull up the index.html file located in the document root directory of the fedora home server. the index.html file contains jquery code. the jquery code only works when i open it locally in my browser (e.g. right click open with firefox), but when i attempt to view the webpage from my laptop the jquery code is not executed.

the code is here below.

<script type="text/javascript" src="jquery-1.8.2.js"></script>
<script>
    $(document).ready(function() {
        $('#form').hide();
        $('input[type=text]').focus(function() {
            $(this).val('');
        });
        $('input[type=password]').focus(function() {
            $(this).val('');
        });
        $('.form').hide();
        $('#log').click(function(){
            $('#form').toggle();
        });
        $('#reg').click(function(){
            $('.form').toggle();
        }); 
    });
</script>
share|improve this question

migrated from webmasters.stackexchange.com Oct 22 '12 at 21:23

1 Answer

up vote 1 down vote accepted

You would need the file jquery-1.8.2.js in your root directory, or wherever the file containing the code is (on the server), and the following tags wrapping around the code.

<script type="text/javascript">
// code here
</script>

Open Firebug or similar extensions and go to console to debug any other eventual problem with the code.

share|improve this answer
1  
thanks alot dude i opened firebug and found this out : 403 Forbidden</title> </head><body> <h1>Forbidden</h1> <p>You don't have permission to access /jquery-1.8.2.js on this server.</p> <hr> <address>Apache/2.2.22 (Fedora) Server at 192.168.1.3 Port 80</address> </body></html> so i just need to set up the permissions correctly – Kortyell Davis Oct 22 '12 at 20:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.