Given the following classes and controller action method:
public School { public Int32 ID { get; set; } publig String Name { get; set; } public Address
You can't use a jQuery id selector if the id contains spaces. Use an attribute selector:
$('[id=foo bar]').show();
If possible, specify element type as well:
$('div[id=foo bar]').show();