knockout js attr binding

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


<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>


ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

knockout js attr binding knockout js attr binding Reviewed by Anil Singh on 9:50 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^