Hello Everyone,
I'm going to share the code sample for attr binding in knockoutjs.
The attr Binding
In the 1st step : code sample for view
I'm going to share the code sample for attr binding in knockoutjs.
The attr Binding
In the 1st step : code sample for view
<a data-bind="attr: { href: myUrl, title: myDetail}">
//Todo: Something content here..
</a>
In the 2nd step: code sample for view-Model
<script type="text/javascript">
var myViewModel = {
myUrl: ko.observable("http://aspdotnetblogspot.blogspot.in/"),
myDetail: ko.observable("This is my code sample blog")
};
</script>
</script>