I am using durandal.js and i have to call some plguin on page load
this is what it would like in plain javascript
$('.testingShifter').shapeshift();
I just need to know is there any durandal(knockout) binding that i can use to call that javascript when page loads
You can create an attached method in your viewmodel or you can create a custom binding for it.
e.g:
});
OR
the custom binding handler would be called using:
on an html element.
Hope this helps.