Javascript Tooltips, Popups, Captions - BoxOver  

Go Back   Javascript Tooltips, Popups, Captions - BoxOver > BoxOver > Bugs
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Display Modes
  #1  
Old 07-17-2007, 08:14 AM
Globox Globox is offline
Junior Member
 
Join Date: Jul 2007
Posts: 1
Default Invalid Argument in function moveMouse

Hello to everyone here. My first post

I added TRY/CATCH to all of the boxover functions in order to track down a problem. So first off, if anyone wants I can post the source to save you doing the same.

I added boxover to some links in one of my asp pages to try it out and have to say that on the first time of rendering the page, the tooltips work a treat. Clicking the link causes the existing page to be saved into an array (to avoid unnecessary Oracle access) and details for the new page are shown along with a 'Back' button.

When I click the 'Back' button, the previously stored page is re-shown but now when I hover the cursor over the links, I get 'moveMouse - Invalid Argument'

Here is my save page function

Quote:
function save_current_page()
{
var func = "save_current_page"
try
{
pagenum += 1
stored_pages[pagenum] = document.getElementById("fullpage").innerHTML
}
catch(err)
{
alert(func + " - " + err.description)
}
}
and the code to show the previously stored page

Quote:
function btn_back()
{
var func = "btn_back"
try
{
document.getElementById("fullpage").innerHTML = stored_pages[pagenum]
pagenum -= 1
}
catch(err)
{
alert(func + " - " + err.description)
}
}
The stored_pages is a previously defined array and the funcs work fine. Just wondered what could be causing the error in moveMouse.

Anyone else had similar problems?

Thanks

Globox
__________________
...I'm a lover, not a fighter
Reply With Quote
Reply


Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT. The time now is 07:24 AM.