Skip to content

Instantly share code, notes, and snippets.

@webkul
Last active December 23, 2015 18:46
Show Gist options
  • Save webkul/62226ccd3e49e0a5463e to your computer and use it in GitHub Desktop.
Save webkul/62226ccd3e49e0a5463e to your computer and use it in GitHub Desktop.
knockout.js HTML binding
<p>
<h1> Hello , <span data-bind="html:getName()" </span></h1>
</p>
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.0/knockout-min.js"></script>
<script type="text/javascript">
function viewModel()
{
this.name = 'webkul software';
this.getName = function(){
return 'Welcome to <i>' +this.name + '</i>.';
};
};
var viewModel = new viewModel();
ko.applyBindings(viewModel);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment