I have the following events for a Backbone View. Its a product view - with three tabs (\"All\", \"Top 3\", \"Top 5\")
Can I somehow pass a parameter into the method
You can do so using closures:
EventObject.on(event, (function(){ var arg = data; // Closure preserves this data return function(){ doThis(arg); } })());