I'm using knockoutjs and I currently have something in my view that looks like this:
<img id="myTab1" data-bind="click: pressedTab.bind($data, '#myTab1')" src="images/image1.png"></img>
This allows me to get the element ID in my view model:
pressedTab = function(tab){
console.log("Element ID: " + tab);
}
This writes:
Element ID: #myTab1
However, it's too repetitive to send the name of the img id in the click event. Is there a way to send the img id without explicitly re-writing it?
Html Binding
js code
You actually can get access to the event object via a KO click handler.
http://jsfiddle.net/madcapnmckay/e8JPT/
Hope this helps.
The answer of madcapnmckay is not completely correct. You can better use currentTarget: it will return the original bound element instead of a child element, when i.e. you have a div with nested elements in it.
See this question
Update
As @Ryan mentioned - event.currentTarget is not available for IE8. For <= IE8 support you can use: