Welcome, Guest. Please login or register.
Did you miss your activation email?
February 12, 2012, 05:00:28 AM

Login with username, password and session length
Search:     Advanced search
Wollen Sie dem WebsiteBaker Team beitreten?
Nähere Informationen finden Sie unter hier und auf unserer neuen Webseite.
149621 Posts in 21098 Topics by 7537 Members
Latest Member: lotte2
* Home Help Search Login Register
Pages: [1]   Go Down
Print
Author Topic: Implementing jQuery  (Read 1954 times)
mahalleday

Offline Offline

Posts: 188



WWW
« on: November 02, 2009, 04:52:41 AM »

I am trying to spice up my show_menu2 menu with some jquery I have called jquery.js and my menu.js sctipts in the head section of my template as follows.

Code:
<head>
<!--Start of Dynamic Head Contnet-->
<title><?php page_title(); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php if(defined('DEFAULT_CHARSET')) { echo DEFAULT_CHARSET; } else { echo 'utf-8'; }?>" />
<meta name="description" content="<?php page_description(); ?>" />
<meta name="keywords" content="<?php page_keywords(); ?>" />
<link rel="stylesheet" type="text/css" href="<?php echo TEMPLATE_DIR?>/screen.css" media="screen" />
<script type="text/javascript" src="jquery.js" />
<script type="text/javascript" src="menu.js" />
<?php
// automatically include optional WB module files (frontend.css, frontend.js)
    
if (function_exists('register_frontend_modfiles')) {
        
register_frontend_modfiles('css');
        
register_frontend_modfiles('js');
    }
?>

<!--End of Dynamic Head Content-->
</head>

The problem  I am having is that the template is not rendered at all.  If i place the call the the js files to be above where I call the register frontend mod files functions the template renders but the module css files aren't included.

Logged

AdBaker2 Project Site: http://code.google.com/p/adbaker/
crnogorac081
AddOn Development
*
Offline Offline

Posts: 1680



« Reply #1 on: November 02, 2009, 09:29:46 AM »

Hi,

in your code, jquery.js and menu.js are placed in your root.. are they ? if they are not, you must use <?php echo TEMPLATE_DIR; ?> or <?php echo WB_URL; ?>/ folder / folder / ...  / ... / to define the path to these java scripts..

cheers
Logged

Wow, I coded something myself: PM Messanger Modul ,Searchbox with suggestions
aldus

Offline Offline

Posts: 1238


« Reply #2 on: November 02, 2009, 09:33:55 AM »

Hello

Well - the <script>-tag can't be written in the "short" [xhtml-|xml-] form - so the "normal" //close//-tag is needed.*)
e.g.
Code:
<script type="text/javascript" src="<?php echo TEMPLATE_DIR?>/jquery.js" ></script>
<script type="text/javascript" src="<?php echo TEMPLATE_DIR?>/menu.js" ></script>

Also, as crnogorac081 described, the (whole?) complete path to the scripts ...

Kind regards
Aldus

*) http://www.w3.org/TR/html4/interact/scripts.html#h-18.2
18.2.1 ff.
[...]Start tag: required, End tag: required[...]
« Last Edit: November 02, 2009, 10:17:33 AM by aldus » Logged
mahalleday

Offline Offline

Posts: 188



WWW
« Reply #3 on: November 03, 2009, 03:27:50 AM »

It was the closing script tag.  I can't believe I would forget something so simple.  Thanks
Logged

AdBaker2 Project Site: http://code.google.com/p/adbaker/
Pages: [1]   Go Up
Print
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!