Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am in the process of completing a peepcode tutorial on raphaelJS and I ran into the following error : Uncaught TypeError: undefined is not a function when using the following callback function within JQuery.

self.plotArray = function (theArray, drawingCallback) {
    $(theArray).each(function (i, release) {
        var xOffset = 0
            , timeOffset = release.date.getTime() - self.startTime
            , timeRatio = timeOffset / self.timeSpan
            , graphWidth = self.paper.width - self.dotRadius * 2;
        xOffset = graphWidth * timeRatio + self.dotRadius;
        drawingCallback(release, xOffset);
    });
};

I get this error when the drawingCallback function is called. I looked at the completed solution from peepcode but it seemed remarkably similar to what this code is doing. It doesnt help that I am a novice in Javascript? Any ideas for resolving this issue would be appreciated.

Given below is the index.html from where the app.js is being called:

<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/raphael.js"></script>
<script type="text/javascript" src="js/app.js"></script>

I am now attaching the full code of app.js:

    function Timeline(domID, width, height, releases) {
        if (!(this instanceof arguments.callee)) {
            return new arguments.callee(arguments);
        }

        var self = this;
        self.init = function () {
            self.paper = Raphael(domID, width, height);
            self.dotRadius = 26;

            self.parseDates();
            self.draw();
        };

        self.parseDates = function () {
            self.parsedReleases = [];

            $(releases).each(function (i, release) {
                var epochSeconds = Date.parse(release.date),
                    parsedDate = new Date(epochSeconds);

                self.parsedReleases.push({date:parsedDate,
                    version:release.version});
            });

            self.startTime = self.parsedReleases[0].date.getTime();
            var endTime = $(self.parsedReleases).last()[0].date.getTime();
            self.timeSpan = endTime - self.startTime;

        };

        self.draw = function () {
            self.plotArray(self.parsedReleases);
        };

        self.plotArray = function (theArray, drawingCallback) {
            $(theArray).each(function (i, release) {
                var xOffset = 0
                    , timeOffset = release.date.getTime() - self.startTime
                    , timeRatio = timeOffset / self.timeSpan
                    , graphWidth = self.paper.width - self.dotRadius * 2;
                xOffset = graphWidth * timeRatio + self.dotRadius;
                drawingCallback(release, xOffset);
            });
        };

        self.drawDotAndLabel = function (release, xOffset) {
            var dot, label;
            dot = self.paper.circle(xOffset, self.dotRadius, self.dotRadius);
            dot.attr({
                'stroke-width':0,
                'fill':'#7E2217',
                'fill-opacity':1.0
            });

            label = self.paper.text(xOffset, self.dotRadius, release.version);
            label.attr({
                'fill':'#ffffff',
                'fontSize':20,
                'fontFamily':"'Garamond', 'Franklin Gothic Medium', 'Gill Sans MT Condensed', 'Arial Narrow',  'sans-serif'"
            });
        };

        self.init();
    }

    var timeline;

    jQuery(function () {
        timeline = new Timeline('timeline', 940, 81, [
            {date:"June 25, 2004", version:"0.5"},
            {date:"December 13, 2005", version:"1.0"},
            {date:"March 18, 2006", version:"1.1.0"},
            {date:"January 28, 2007", version:"1.2.0"},
            {date:"December 7, 2007", version:"2.0.0"},
            {date:"May 31, 2008", version:"2.1.0"},
            {date:"November 21, 2008", version:"2.2.2"},
            {date:"March 15, 2009", version:"2.3.2"},
            {date:"November 26, 2009", version:"2.3.5"},
            {date:"July 26, 2010", version:"3 RC1"},
            {date:"August 30, 2010", version:"3.0"}
        ]);
    });
share|improve this question
3  
Where/how is self.plotArray called? It seems you don't pass a value for drawingCallback to it. – Felix Kling Nov 25 '12 at 21:26
Callbacks are often optional so you probably just need a quick if(drawingCallback) check. – mu is too short Nov 25 '12 at 21:39
What is the difference to the official solution? – Bergi Nov 25 '12 at 21:40
error is on what line of what file? – popnoodles Nov 25 '12 at 22:03
What are the contents of your self.draw function? This is the only function that calls self.plotArray. It calls it twice, make sure the callbacks you are passing are spelled correctly. – jm- Nov 25 '12 at 23:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.