views:

132

answers:

2

I have been pulling out my hair on this topic. I have been searching google and could not find much to help me. I have this here: http://www.fissiondesigns.com/simon

Works in FF and chrome, but can't get it to work on IE, keep getting an error 'object doesnt support this property or method'. I looked it up on google and couldn't find any examples that pertain to my problem. If anyone could help that would be great! thanks.

+1  A: 
Pointy
+2  A: 
.draggable({
            containment: image.canvas,

        });
        return this;

Should be (in jquery.pinpoint.js):

.draggable({
            containment: image.canvas
        });
        return this;

And:

area.resizable({
       handles: 'all',
      containment:image.canvas,

       })

should be

area.resizable({
       handles: 'all',
       containment:image.canvas
    })

So, basically as Pointy has said, you've got a few commas that shouldn't be there.

GenericTypeTea
I think the call to "resizable" right above that has a similar problem.
Pointy
Thanks Pointy, updated the answer.
GenericTypeTea