xsl-list
[Top] [All Lists]

Need help in... Javascript

2005-05-27 07:37:21
Hi all,

sorry to post my problem in this forum, but after xsl-ing a while, I got
through a little problem while inserting Javascript into my xsl
generated html page, and I'm stuck there since two days already!

function rescaleCoord(x,img,wantedSize) {
        diagramPre = new Image();
        diagramPre.src = img; 
        var imageSize = diagramPre.width;
        var scale=(wantedSize * 100) / imageSize;
        return Math.round(x * (scale / 100));
}

This function works well.

Now, I need to have my AREA MAP COORDS' Attribute get the results of my
Javascript function.

Example : ...
COORDS="javascript:rescaleCoord('774','../../InformationsManagement/XML/
Images/Diagrammes/d0000102.png','650'),javascript:rescaleCoord(...),java
script:rescaleCoord(...),javascript:rescaleCoord(.)"

It doesn't work properly...

Thanks for your help

Lawrence Michel

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>
  • Need help in... Javascript, michella <=