vote up 0 vote down star

Hey all,

Please tell me what is wrong with this code:

 <script type="text/javascript" >

function createimg()
       {
         var img = new Image();
       img.src='link/to/image';
       img.alt='Next image';  img.id = 'span1'; img.style.zIndex = 10;
       img.style.position = 'absolute';  img.style.display='block'; img.style.top = '130px';
       img.style.padding='10px'; img.style.left='440px';    img.className ='dynamicSpan';
        document.body.appendChild(img);
        return img;
        }

    function al()
    {
     alert('loaded');
    }
   a = createimg();

    a.onmouseover = al();

</script>

In specific the last part, where I'm trying to assign the 'onmouseover' event handler of a, which is an image element. It does not assign this event handler for some reason and just executes the function on page load instead.

What is wrong?

Tony

flag

77% accept rate
1  
be careful with the hardcoded id, as having more than one element with the same id in the DOM will violate the HTML spec. – Russ Cam Oct 7 at 22:13

5 Answers

vote up 11 vote down check
a.onmouseover = al;

When you write al() you are calling the function on the spot and assigning the return value of the function (which is undefined since there's no return statement) to a.onmouseover. Instead you want to assign the function itself so you just need to remove the parentheses.

link|flag
damn beat me to it :P – Nick Bedford Oct 7 at 22:11
1  
+1 for giving the reason why – LFSR Consulting Oct 7 at 22:11
Beat me to it as well. Yes, this is the right answer. – Daniel Pryden Oct 7 at 22:12
that helps! but now my al function does not execute at all, not even on mouseover of image. could anything else be wrong? – Tony Oct 7 at 22:13
Sorted!! Works now! Thanks guys!! :) – Tony Oct 7 at 22:16
vote up 2 vote down

Well, for starters, your code is not formatted in a way that makes it easy to read.

But your problem is here:

a.onmouseover = al();

What you really want is:

a.onmouseover = al;

The () operator invokes the function. So the expression al() is equal to the result of executing the function al -- which means the al function must be executed before its result (which, in this case, is undefined) can be assigned to a.onmouseover.

By contrast, if you just use al, the expression is equal to the function object al, which is what you actually want to assign to the event. In that case, when the event is triggered, the al function is executed.

link|flag
vote up 1 vote down

Try

a.onmouseover = al;

instead of

a.onmouseover = al();
link|flag
vote up 1 vote down
    a.onmouseover = al;
link|flag
vote up 1 vote down

Replace:

a.onmouseover = al();

With:

a.onmouseover = al;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.