Posted by vitay on 11/16/06 21:06
> vitay wrote:
>> I have a page where button have the following java code:
>
> This isn't Java, it's Javascript.
>
Small mistake yes, of course it's javascript
>> onmouseover="style.cursor=\'hand\'; btn_img.src=\''.$img.'\';"
>
> I don't see what sense this code makes anyway. If you want the cursor to
> turn into a pointer (not "hand"--that's IE-specific), you set the tag's
> style attribute (or use a separate stylesheet) from the outset instead of
> waiting for a mouseover:
>
> style="cursor: pointer;"
It means thah I must set style on <img>?
> As for the image's src property, even if $img expands into something else,
> I don't see how setting the src to
>
> '.http://www.example.com/resource.'
>
> is what you want.
I don't understand this paragraph but in $img is only name of jpg and
nothing else.
[Back to original message]
|