Archives for: "September 2011"
Good jQuery Drop down list
The traditional form drop down list is not very good for JSON and that is very hard to create some advanced css layout for it. So, I choose to use jQuery dropdown list. Finally, I shortlisted jALDropdown to be my choice. It supports JSON and CSS layout… more »
There is no "Contains" in Javascript string
I used "Contains" method in C# whether the strings contains a keyword. For example: Codestring str = "string";if(str.Contains("str")){Console.Write("OK");} There is no such method, but you can "indexOf". Codevar str = "string";if(str.indexOf("str")!=… more »
Tags: how to