Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 12-19-2012, 05:36 PM   PM User | #1
nx2b
New Coder

 
Join Date: Aug 2012
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
nx2b is an unknown quantity at this point
External Javascript

Hi,

I need help with a javascript I would like to setup, the files I have is a .css, .js and the .png it's a onmouseover help tool. Would anyone know of how to set this up properly, I'm trying to put it in a .tpl and html/php static page.
nx2b is offline   Reply With Quote
Old 12-19-2012, 08:42 PM   PM User | #2
StevenHu
Regular Coder

 
Join Date: Jun 2011
Location: CA
Posts: 105
Thanks: 0
Thanked 10 Times in 10 Posts
StevenHu is an unknown quantity at this point
OK, tell us exactly what is supposed to happen on the screen. The information you gave is is not enough for us to help you.
__________________
Steve Husting
http://iphonedevlog.wordpress.com
StevenHu is offline   Reply With Quote
Old 12-20-2012, 09:18 AM   PM User | #3
Redcoder
Regular Coder

 
Redcoder's Avatar
 
Join Date: May 2012
Location: /dev/couch
Posts: 309
Thanks: 2
Thanked 46 Times in 45 Posts
Redcoder has a little shameless behaviour in the past
Well, to attach the external Javascript file, just have this in your code:

PHP Code:
<script type="text/javascript" src="js/myjavascriptfile.js" ></script>
<link rel="stylesheet" type="text/css" href="css/mycssfile.css" /> 
If your JS file uses JQuery, include this JQuery source link for the latest JQuery version. So that you'll have this:

PHP Code:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>

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

<link rel="stylesheet" type="text/css" href="css/mycssfile.css" /> 
If you need help on the onmouseover effect, JQuery makes it very easy for you. Check out

http://api.jquery.com/hover/
__________________
For professional Hosting and Web design.....


NetEssentials.co.uk

Last edited by Redcoder; 12-20-2012 at 09:24 AM..
Redcoder is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 08:42 AM.


Advertisement
Log in to turn off these ads.