Welcome to Catalyst Blogs Sign in | Join | Help

Browse by Tags

All Tags » Function Callbacks   (RSS)
Before I developed my client-centric model for creating ASP.NET pages, I handled everything in code-behind, especially any dynamic HTML. I really only used JavaScript for quick-and-dirty DOM updates; any concept of creating controls was implemented via Read More...
I thought I’d share a quick gotcha when wiring function callbacks with $addHandler in JavaScript. $addHandler takes in a DOM element, the name of the event, and a method to handle it. This looks something like: var button = document.createElement(‘input’); Read More...