vote up 0 vote down star

Hi All,

I dynamically create an element (div) in javascript, on which i register an event listener:

var tooltip = document.createElement('div');
tooltip.onclick = function() { alert('hello'); }

Now, if I attach this element to the document body:

document.body.appendChild(tooltip);

all is well and the event is captured. However (for positioning purposes) i want to attach this element to a (static) sub-element within my page, e.g:

document.getElementById('id').appendChild(tooltip);

and the element is generated and positioned correctly - but the onclick event now is no longer captured. Any thoughts? This is x-browser, so i must be missing something.

Thanks, Don.

flag

5 Answers

vote up 0 vote down

Here is some code to remove the tooltip for onmouseout.

Give your toolTip an ID when creating it:

toolTip.setAttribute('id','toolTip');

Then for onmouseout

function removeDiv(container) { var toolTip = document.getElementById('toolTip'); document.getElementById(container).removeChild(toolTip); }

link|flag
vote up 1 vote down

You're creating not only one but MANY divs. Try this instead(I hope you don't mind but I fixed the HTML and CSS too):

<html>
<head>

<script type="text/javascript">

function makeDiv() {
    if(!document.getElementById('tooltipDiv')){
    	var tooltip = document.createElement('div');

    	tooltip.id = "tooltipDiv";
    	// Give our tooltip a size and colour so we can see it
    	tooltip.style.height = '200px';
    	tooltip.style.position = 'absolute';
    	tooltip.style.width = '200px';
    	tooltip.style.backgroundColor = '#eee';

    	// Register onclick listener
    	tooltip.onclick = function() { alert('hello'); }
    	//tooltip.addEventListener("click", function(){ alert('hello'); }, false);

    	// *** Comment one of these out: ***

    	//document.body.appendChild(tooltip);
    	document.getElementById('myDiv').appendChild(tooltip);
    }
}

</script>
</head>

<body>


<div id="myDiv" 
     onmouseover="makeDiv();" 
     style="position: relative; top: 100px; left: 100px; border: 1px solid red; width: 200px;">

<span>my div text</span>

</div>

</body>
</html>
link|flag
I concur, many divs are created. – some Dec 18 '08 at 15:06
ah of course! becuase I am triggering mouseover everytime i go to click... – Don Dec 18 '08 at 15:14
luiscubal - and everyone - thank you very much for the help – Don Dec 18 '08 at 15:15
Update: yes, because tooltip is a child of 'myDiv' it also triggers the mouseover. – Don Dec 18 '08 at 15:24
vote up 1 vote down

Maybe you need to register the event handler after appending?

link|flag
hi - yes doesn't seem to make any difference unfortunately – Don Dec 18 '08 at 15:00
Ah, okay, thanks for trying it out... – Kev Dec 18 '08 at 15:08
vote up 0 vote down

Ok all, here is my code, apologies for the delay. A version with a work-around is posted underneath:

<html>
<head>

<script type="text/javascript">

function makeDiv() {
  var tooltip = document.createElement('div');

  // Give our tooltip a size and colour so we can see it
  tooltip.style.height = '200px';
  tooltip.style.position = 'absolute';
  tooltip.style.width = '200px';
  tooltip.style.backgroundColor = '#eee';

  // Register onclick listener
  tooltip.onclick = function() { alert('hello'); }

  // *** Comment one of these out: ***

  //document.body.appendChild(tooltip);
  document.getElementById('myDiv').appendChild(tooltip);
}

</script>
</head>

<body>


<div id="myDiv" 
     onmouseover="makeDiv();" 
     style="position: relative; top: 100px; left; 100px; border: 1px solid red; width: 200px;">

<span>my div text</span>

</div>

</body>
</html>

=================================== OK - so this works:

<html>
<head>

<script type="text/javascript">

function makeDiv() {
  var tooltip = document.createElement('div');

  // Give our tooltip a size and colour so we can see it
  tooltip.style.height = '200px';
  tooltip.style.position = 'absolute';
  tooltip.style.width = '200px';
  tooltip.style.backgroundColor = '#eee';

  // Register onclick listener
  tooltip.onclick = function() { alert('hello'); }

  // *** Comment one of these out: ***

  //document.body.appendChild(tooltip);
  document.getElementById('container').appendChild(tooltip);
}

</script>
</head>

<body>

<div id="container" style="border: 1px solid blue; float: left; ">
  <div id="myDiv" 
       onmouseover="makeDiv();" 
       style="position: relative; border: 1px solid red; width: 200px;">

       <span>my div text</span>
  </div>
</div>

</body>
</html>
link|flag
hi yes, i just updated that. really? not working in FF3.0.4 – Don Dec 18 '08 at 14:51
The problem exists in FF3, IE7 and Chrome, but it works in Opera. – some Dec 18 '08 at 14:55
Sorry about my comment earlier(I deleted it now). I rushed a little bit. I think I can replicate your problem on my computer. I'll see if I can answer this. – luiscubal Dec 18 '08 at 14:57
ok i have a work around I think , I will add it to the bottom of my "answer" so you can see (in future I will simple edit my original post ;) ). The problem seems to be caused 'myDiv' being the same element that triggers the creating of 'tooltip' and the element to which tooltip is appended. – Don Dec 18 '08 at 15:02
vote up 0 vote down

Your code works fine for me on firefox 3.0.5 and IE7. Are you sure your example is correct?

link|flag
Ah, you beat me to it. I have tested in FF4, IE7, Opera 7 and Chrome,and it works. Can the OP please post a complete example? There must be something else that is wrong. – some Dec 18 '08 at 14:02
Seconded: please post more code. – annakata Dec 18 '08 at 14:05
ok, thanks guys, one minute... – Don Dec 18 '08 at 14:06
We are waiting ;) – some Dec 18 '08 at 14:08
hi - ok i posted my code below (as an answer), you'll see that it only works with document.body. – Don Dec 18 '08 at 14:49

Your Answer

Get an OpenID
or

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