Recent Posts by ajobe

Subscribe to Recent Posts by ajobe 6 post(s) found

Mar 13, 2008
Avatar ajobe 6 post(s)

Topic: Help/Bug / can tool tip be positioned?

Wow!! That might be just the thing! Thanks!!

 
Mar 13, 2008
Avatar ajobe 6 post(s)

Topic: Help/Bug / can tool tip be positioned?

Can the tooltip add-on be positioned on the page….either centered on the page or in relation to the invoking link? I am looking for a tooltip app that will allow all of the features of this one, plus the ability to control size and position.

Thanks!

 
Mar 13, 2008
Avatar ajobe 6 post(s)

Topic: Help/Bug / tooltipElement has no properties

Geez….sorry for the poor post… hopefully it is still understandable as I could use the help.

Thanks!!

 
Mar 13, 2008
Avatar ajobe 6 post(s)

Topic: Help/Bug / tooltipElement has no properties



<span id="tooltip3" class="green">window open</span>

<script>
  TooltipManager.init("tooltip", {url: "/broadband/tooltip_url.html", options: {method: 'get'}}, {showEffect: Element.show, hideEffect: Element.hide});

  TooltipManager.addHTML("tooltip1", "tooltip_content2");
  TooltipManager.addAjax("tooltip2", {url: "/broadband/tooltip_url.html", options: {method: 'get'}});
  TooltipManager.addURL("tooltip3", "/broadband/tooltip_url.html", 955, 200);

  TooltipManager.addAjax("tooltip4", {url: "tooltip_ajax.html", options: {method: 'get'}});
</script>

 
Mar 13, 2008
Avatar ajobe 6 post(s)

Topic: Help/Bug / tooltipElement has no properties

hmmmm….that post didn’t show up as I anticipated at all. Maybe this?

the javascript libraries in the head:

<link href="/lib/styles/1.0/default.css" rel="stylesheet" type="text/css" /> <link href="/lib/styles/1.0/alphacube.css" rel="stylesheet" type="text/css" />

and the code in the body:

window open


 
Mar 13, 2008
Avatar ajobe 6 post(s)

Topic: Help/Bug / tooltipElement has no properties

I am trying to use the tooltip in a page and am getting this javascript error. Does anyone know what this might be? Here is what I have in the page:

[code]

<head> </head> <body>

window open

<!- PROTOTYPE WINDOW ->
TooltipManager.addHTML("tooltip1", "tooltip_content2");
TooltipManager.addAjax("tooltip2", {url: "/broadband/tooltip_url.html", options: {method: 'get'}});
TooltipManager.addURL("tooltip3", "/broadband/tooltip_url.html", 955, 200);
TooltipManager.addAjax("tooltip4", {url: "tooltip_ajax.html", options: {method: 'get'}});

<!- END PROTOTYPE WINDOW SCRIPTS ->

</body>

[/code]

amongst other things. Thanks!!