I get javascript error
SCRIPT16385: Not implemented
When I ran the following code snippet.
$j('img[id="edit_destination"]').bind('click',function(){
document.getElementById("edit_destination").onclick = editPRINum(this);
});
editPRINum is a function in the same javascript. I was looking for a problem and looked as if I should declare if it is a variable. However, I use this to bind the function. What should I do?
source
share