</head>
<body onload="bodyOnload()" />
I'm not a javascript or a php expert by any means, can anyone give me an idea of what's going on here?
- Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<title>fieldtechs - Dataface Application</title>
<link rel="stylesheet" type="text/css" href="http://path/to/dataface/plone.css"/> <!-- Stylesheets go here -->
<!-- Common Plone ECMAScripts -->
<!-- Pull-down ECMAScript menu, only active if logged in -->
<script type="text/javascript"
src="http://http://path/to/dataface/plone_menu.js">
</script>
<!-- Define dynamic server-side variables for javascripts in this one -->
<script type="text/javascript"
src="http://http://path/to/dataface/plone_javascript_variables.js.php">
</script>
<script type="text/javascript" language="javascript"><!--
DATAFACE_URL = 'http://path/to/dataface';
DATAFACE_SITE_URL = 'http://path/to/dataface/my_table';
DATAFACE_SITE_HREF = '/http://path/to/dataface/my_table/index.php';
DATAFACE_PATH = 'D:/published files/http://path/to/dataface';
//--></script>
<script type="text/javascript"
src="http://http://path/to/dataface/plone_javascripts.js">
</script>
<!-- custom javascripts can go in slot "custom_javascripts" -->
<!-- Place any other items in the head of the document by filling the "head_slot" slot -->
</head>
<body onload="bodyOnload()" />
<link rel="alternate" href="http://http://path/to/dataface/amy_table/index.php?-table=fieldtechs&-action=feed&-cursor=0&-skip=0&-limit=30&-mode=list"
title="RSS 1.0" type="application/rss+xml" />
This is the section that's giving me trouble:
</head>
<body onload="bodyOnload()" />
I get a javascript error, object expected, and it points me here.
Thanks in advance!