To toggle hide/show, i used this code;
togglebtn.click(function() {
var that = this;
$('.togglecontainer').toggle(500, function(){
var txt = $(that).html();
$(that).html((txt == 'Show less') ? 'Show more' : 'Show less');
});
});
togglebtn.trigger("click");
But it toggles text inside one button. I want two buttons, with two diffrent img src's let's say images/show.png and images/hide.png
Thanks in advance
txt == 'Show less'in parentheses? – rightfold Jan 16 '11 at 13:08