Revision 5675
Added by ben leinfelder almost 14 years ago
index.jsp | ||
---|---|---|
262 | 262 |
var msg = "Sorry but there was an error performing the search: "; |
263 | 263 |
$("#error").html(msg + xhr.status + " " + xhr.statusText); |
264 | 264 |
} |
265 |
// collapsible search results? |
|
266 |
$(function() { |
|
267 |
$('.accordian').click(function() { |
|
268 |
$(this).next().slideToggle(); |
|
269 |
return false; |
|
270 |
}).next().hide(); |
|
271 |
}); |
|
272 |
|
|
265 | 273 |
}); |
266 | 274 |
|
267 | 275 |
return false; |
Also available in: Unified diff
hide/show search result details for each matched row.