Skip to content

Instantly share code, notes, and snippets.

@PandaWood
Created August 13, 2010 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PandaWood/522573 to your computer and use it in GitHub Desktop.
Save PandaWood/522573 to your computer and use it in GitHub Desktop.
loadList: ->
$.Enumerable.Range(1, 10)
.Where( (i)-> i % 2 == 0 )
.OrderByDescending( (i)-> i )
.Select( (i)-> $("<option>").text(i).val(i) )
.TojQuery()
.appendTo "#select1"
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment