Hi
I cant get this modle to module to work
Below is my index file and the code in the presets file.
Any one who haves any idea whats wrong.
I have installed the module, called the [[jQueryInclude?preset=tectabs]] in a wysiwyg and <h2>Test1</h2>.....
the only things showing is the headers in a vertical raw.
Like this
Test1
Test2
Websitebaker version 2.8.1
jQueryAdmin v2.8
Wysiwyg:tab 1.7.7b
INDEX FILE
<?php
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<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(); ?>"/>
<meta name="language" content="swedish"/>
<link rel="shortcut icon" type="image/x-icon" href="<?php echo WB_URL; ?>/favicon.ico" />
<link rel="shortcut icon" href="<?php echo WB_URL; ?>/favicon.ico" /> <link rel="icon" type="image/ico" href="<?php echo WB_URL; ?>/favicon.ico" />
<?php
if(function_exists('register_frontend_m
odfiles')) {
register_frontend_m
odfiles('css');
register_frontend_m
odfiles('js');
} ?>
<link href="<?php echo TEMPLATE_DIR; ?>/screen.css" media="screen" rel="stylesheet" type="text/css"/>
END INDEXFILE
CODE IN PRESETS FILE
<script src="{WB_URL}/modules/jqueryadmin/jquery-ui/ui/jquery.ui.core.min.js" type="text/javascript"></script>
<script src="{WB_URL}/modules/jqueryadmin/jquery-ui/ui/jquery.ui.widget.min.js" type="text/javascript"></script>
<script src="{WB_URL}/modules/jqueryadmin/jquery-ui/ui/jquery.ui.tabs.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#tabs").tabs();
});
</script>
<!-- custom -->// ----- insert your custom code here -----
<!-- end custom -->
END CODE IN PRESETS FILE