Results 1 to 2 of 2

Thread: Conveyor belt slideshow script with Cool DHTML tooltip script II

  1. #1
    Join Date
    Nov 2006
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Conveyor belt slideshow script with Cool DHTML tooltip script II

    1) Script Title: tooltip for conveyor belt

    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...rightslide.htm
    http://www.dynamicdrive.com/dynamici...mltooltip2.htm
    3) Describe problem:

    I need to customize the title/alt for images that appear within a conveyor belt script.

    since there's no css way i know of to changing image title I tried using a tooltip script.

    once i ad the mouse over functions of the tooltip script to the conveyor script as below:

    Code:
     leftrightslide[0]='<a href="http://" onMouseover="ddrivetip('JavaScriptKit.com JavaScript tutorials', 300)";
    onMouseout="hideddrivetip()"><img src=http://www.maayangoldman.com/images/sb8_1.jpg border=0 title="model"></a>'
    the whole belt is not appearing. can anyone please help or suggest another way of solving that?
    Last edited by jscheuer1; 10-02-2009 at 04:51 PM. Reason: format code

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    First of all, that should be all on one line (I know, it may have gotten wrapped before I formatted it - what matters is how it appears in your source code).

    Second, you should quote the URL of the image.

    Third, you cannot nest like delimiters (in this case the single quote ' character) in a string without escaping them (\'), try this:

    Code:
    leftrightslide[0]='<a href="http://" onmouseover="ddrivetip(\'JavaScriptKit.com JavaScript tutorials\', 300);" onmouseout="hideddrivetip();"><img src="http://www.maayangoldman.com/images/sb8_1.jpg" border=0 title="model"></a>';
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •