Revision 5762
Added by ben leinfelder almost 14 years ago
index.jsp | ||
---|---|---|
284 | 284 |
var msg = "Sorry but there was an error performing the search: "; |
285 | 285 |
$("#error").html(msg + xhr.status + " " + xhr.statusText); |
286 | 286 |
} |
287 |
// collapsible search results?
|
|
287 |
// collapsible search results - show and hide the next div
|
|
288 | 288 |
$(function() { |
289 | 289 |
$('.accordian').click(function() { |
290 |
$(this).next().slideToggle("slow"); |
|
290 |
$(this).parent().next().slideToggle("slow");
|
|
291 | 291 |
return false; |
292 |
}).next().hide(); |
|
292 |
}).parent().next().hide();
|
|
293 | 293 |
}); |
294 | 294 |
|
295 | 295 |
// stop the busy indicator |
Also available in: Unified diff
use citation as the search result accordian item