[web] domTT problems.

Started by
-1 comments, last by Thoover 13 years, 2 months ago
here is the source my page displays, minus some private and unimportant information:


<html>
<head>
<script TYPE="text/javascript">
<!--
var downStrokeField;
function autojump(fieldName,nextFieldName,fakeMaxLength)
{
var myForm=document.forms[document.forms.length - 1];
var myField=myForm.elements[fieldName];
myField.nextField=myForm.elements[nextFieldName];
if (myField.maxLength == null)
myField.maxLength=fakeMaxLength;
myField.onkeydown=autojump_keyDown;
myField.onkeyup=autojump_keyUp;
}
function autojump_keyDown()
{
this.beforeLength=this.value.length;
downStrokeField=this;
}
function autojump_keyUp()
{
if (
(this == downStrokeField) &&
(this.value.length > this.beforeLength) &&
(this.value.length >= this.maxLength)
)
this.nextField.focus();
downStrokeField=null;
}
//-->
</SCRIPT>
<script type="text/javascript" language="javascript">
var domTT_styleClass = 'domTTOverlib';
var domTT_maxWidth = false;
try
{
var winCloseButton = document.createElement('img');
winCloseButton.src = './images/close.png'
winCloseButton.style.verticalAlign = 'bottom';
}
// permission denied
catch (e)
{
var winCloseButton = 'X';
}
</script>
<style type='text/css' media='print'>
.dontPrint
{
display : none
}
body
{
color: #000000;
background-color: #FFFFFF;
}
body a:link
{
color: #000000;
}
body a:visited
{
color: #000000;
}
body a:hover
{
color: #000000;
}
body a:active
{
color: #000000;
}
</style>

<style>
@import url("./css/frame.css");
</style>
<style>
@import url("./css/ratingSystem.css");
</style>
<script type="text/javascript" language="javascript" src="./js/domTT.js"></script>
<script type="text/javascript" language="javascript" src="./js/CursorFinder.js"></script>
<script type="text/javascript" language="javascript" src="./js/domLib.js"></script>
<script type="text/javascript" language="javascript" src="./js/alphaAPI.js"></script>
<script type="text/javascript" language="javascript" src="./js/domTT_drag.js"></script>
<script type="text/javascript" language="javascript" src="./js/fadomatic.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>****</title>
</head>
<body bgcolor=#000000 text=#FFFF00 alink=#FFFFFF hlink=#FFFFFF link=#FFFFFF vlink=#FFFFFF><center>
<script type="text/javascript">
<!--
if(window.location != "****") window.location = "****" //-->
</script>
<table border=0 width=920>
<tr height=85>
<td valign=center align=center width=20%>Welcome Back,<br>****<br><a href="logout.php">
Log Out</a></td>
<td valign=center align=center width=20%><a href="#void" onclick="return makeFalse(domTT_activate(this, event, 'id', 'cust', 'caption', 'Add Customer', 'content', '&lt;iframe src=&quot;addCust.php&quot; style=&quot;width: 700px; height: 575px;&quot;&gt;&lt;/iframe&gt;', 'type', 'sticky', 'styleClass', 'domTTWin', 'closeLink', winCloseButton, 'draggable', true, 'closeAction', 'destroy'));">
Add Customer</a></td>
*unimportant*
<hr><br><script type="text/javascript" language="javascript">
var domTT_styleClass = 'RSTitle';
</script><form method=post>

<table border="0" width="425">

<tr>

<td width="20%"><img alt="" src="./images/4.png" onmouseover='domTT_activate(this, event, "content", "****<br>Marked As: Good<hr>****", "styleClass", "RSTitle", "trail", "true");'></td>

<td width="40%">152</td>

<td width="20%">****</td>

<td width="40%"><input type="submit" name="btnChangeCustomer" value="Change"></td>

</tr></table></form>
*unimportant*
</table></center>
</body>
</html>


I checked that I am correctly locating the JavaScript and CSS Files

after I edited some code on this page, none of the DomTT is working, and I have not edited any of the domTT scripts or calls.
all the code left out and replaced with *unimportant* was links and forms and **** was another person's (or my) private information

I'm trying to find where I went wrong, even when I uploaded the code from right before this change it still did not work

if you need more of the code or for me to give a link to a "demo" page just ask and I'll post as much as I can.

This topic is closed to new replies.

Advertisement