I know that one can always define own custom attributes for an HTML tag.
I also know that data-bind
is the keyword knockout.js chose as the HTML attribute that links the data to the UI.
So far so good.
What I am curious to know is whether when I come across HTML on some website and I see that it uses the attribute data-bind
, does it always imply it uses knockout.js
?
<span class="chk" data-bind="visible: selectedAnswers().length > 0" />
In other words, what is the likelihood that a website using the data-bind
attribute is not using knockout.js
?