[jQuery] Call function in load

[jQuery] Call function in load


Did I do this right? I can't test right now but I think this should
work:
function doSomething()
    {
        ...
    }
(".someImage").load(doSomething()) ;
I want to fire off doSomething() when the image is fully loaded.