I use the following code to collapse/show divs in my content page:
$(document).ready(function() {
// Hookup event handlers and execute HTML DOM-related code
$('#nameHyperLink').click(function() {
var div = $('#nameDiv');
var link = $('#nameHyperLink');
if (div.css('display') == 'none') {
link.text('Hide Data');
div.show('100');
}
else {
link.text('Show Data');
div.hide('100');
}
});
});
When I include the jquery UI script file, this code no longer works. The text for the hyperlink changes, but the div is not actually displayed.
Why is this?
div.show(100);do? – Nick Craver♦ May 11 '10 at 18:17display:blockordisplay:inlinedepending on what it originally was) in 100 ms by fading in. – Matthew Jones May 11 '10 at 18:18