is there a way to get the state of the slider wheather it is slideUp() or sliderDown() .
suppose if I were to user slideToggle()
$(document).ready(function(){
$(".flip").click(function(){
$("#panel").slideToggle("slow",showstate);
function showstate(){
}
});
});