I am trying to add my own object parameter to a canvas element as in jquery (like it adds element_id.draggable, element_id.resizable etc to the dom elements). My piece of code looks like this:
window.addEventListener("DOMContentLoaded",handler,false);
function handler()
{
HTMLCanvasElement.prototype.animateLine=function(x1,x2,y1,y2,params) {
if(params)
init(this,x1,x2,y1,y2,params.lineColour,params.lineWidth,params.divisions,params.totalTime,params.callback);
else
init(this,x1,x2,y1,y2);
};
}
So that when a user declares a canvas tag, he can directly call canvas_id.animateLine()
to execute the above function.
But the problem occurring is that when the user call animateLine() in body onload or window onload, then it does not work (says animateLine is undefined).
I wanted to know that is this the right way to implement this? Also how can I remove the error from the above piece of code since I too have to call it on body/window onload?
EDIT: Updated code to call function on DOM ready, still it will not work if the user calls animateLine on DOM Ready. Any solution to this?
You seem to have 2 problems: You don't really add your init function to
window.onload
, you'd need to remove the()
afteronload
. Also, it would could be that it is just overwritten by an other assignment. Use proper event listeners instead.Second, your function is only executed once. It waits for
onload
, then looks around for allcanvas
elements it can find (at that time) and adds a (different) function to each of them.If you really would want to add a function to every canvas element ever existing (you could dynamically create them), you would need to add your methods to
HTMLCanvasElement.prototype
. Yet, there is a good article about What’s wrong with extending the DOM. Read it and use another solution, e.g. the proposed object wrappers. If you use jQuery or some lib like that, you could writeanimateLine
as a plugin for that.