Skip to content Skip to sidebar Skip to footer

Not Working "onclick " On Firefox, Chrome And Safari

I am working on a program using python, HTML and javascript. I have two images that works as a button changin colors onmouseover and onmouseout. It also has a function that works w

Solution 1:

I'd suggest adding a selector value to the image, then binding events the unobtrusive way (makes maintenance a bit easier later on).

Do it like this:

<img src="/RH/images/tacha.png"class="myImage" />

then, after the DOM is loaded, attach your events (jquery here for simplicity)

$('img.myImage').bind('click', function() { 
  alert('testing!'); 
  eliminarRenglon('eliminar','%s'); 
});

Post a Comment for "Not Working "onclick " On Firefox, Chrome And Safari"