How do I save javascritp code in a seperate file?

Discussion in 'HTML & Website Design' started by mistermix, Aug 29, 2006.

  1. #1
    I want to put a flickr photo strip on a web page. This is the code:

    Can I save this code in a seperate file and just point to it? How do I do this?

    thanks in advance... :)
     
    mistermix, Aug 29, 2006 IP
  2. mynewchoice

    mynewchoice Peon

    Messages:
    81
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Yes, you can save that code snippet as a separate file and then include that into any page you need. Does your site support PHP? You can save the file as a PHP and include it using:

    <?php include ("pagename.php"); ?>
    Code (markup):
    If you do not support PHP files, it can still be done with different syntax but this is probably one of the more common approaches.

    -mnc
     
    mynewchoice, Aug 29, 2006 IP
  3. mistermix

    mistermix Active Member

    Messages:
    2,326
    Likes Received:
    85
    Best Answers:
    0
    Trophy Points:
    90
    #3

    Sorry I should have said, its a HTML site...

    Thanks any way.
     
    mistermix, Aug 29, 2006 IP
  4. Kaediem

    Kaediem Well-Known Member

    Messages:
    1,128
    Likes Received:
    118
    Best Answers:
    0
    Trophy Points:
    150
    #4
    You can use php even in html documents

    Lisa
     
    Kaediem, Aug 29, 2006 IP
  5. ahkip

    ahkip Prominent Member

    Messages:
    9,205
    Likes Received:
    647
    Best Answers:
    0
    Trophy Points:
    310
    #5
    here is how to include a external java file
    <SCRIPT LANGUAGE="JavaScript" SRC="myscript.js">
    </SCRIPT>

    create a fucntion that output those code with document.write, then call it anywhere you wanted
     
    ahkip, Aug 29, 2006 IP
  6. mistermix

    mistermix Active Member

    Messages:
    2,326
    Likes Received:
    85
    Best Answers:
    0
    Trophy Points:
    90
    #6
    thats what i was looking for, thanks.
     
    mistermix, Aug 29, 2006 IP
  7. mynewchoice

    mynewchoice Peon

    Messages:
    81
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #7
    mistermix,

    Sorry for misunderstanding your original request. Glad to see that someone else came in and cleaned up for me. :D

    -mnc
     
    mynewchoice, Aug 29, 2006 IP