Archives for the 'jQuery' Category
Getting started with jQuery
Maybe you’re like me a month ago: you’ve heard great things about jQuery; you would love to get to know the basics; but you have better things to do than to aimlessly walk through tutorials. I was lucky enough to be working alongside a jQuery-savvy UI developer on a recent project these past few weeks, […]
Integrating jQuery Autocomplete plugin with ASP.NET
I wanted to use the jQuery Autocomplete plugin:
$(document).ready(function() {
var url = “SomeData.aspx”;
$(”#myTextBox”).autocomplete(url, {
minChars: 2
});
[…]
