Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to implement a jQuery toogle div. When you click the image (image of a down arrow) the content will slide down. Now when this happens the image is SUPPOSED to now show an arrow pointing up (but it just goes blank), clicking the up image should slide the content back up and out of view.

    $("img.toggle1").toggle(function(e){
 alert('change to reactivate');
     $(this).attr("src","images/down.png")
 }, function(e) {
 alert('change to deactivate');
     $(this).attr("src","images/up.png")
              // hide a row after acknowledgement

 }); 

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#slickbox').hide();
 // shows the slickbox on clicking the noted link
  $('a#slick-show').click(function() {
 $('#slickbox').show('slow');
 return false;
  });
 // hides the slickbox on clicking the noted link
  $('a#slick-hide').click(function() {
 $('#slickbox').hide('fast');
 return false;
  });
 // toggles the slickbox on clicking the noted link
  $('a#slick-toggle').click(function() {
 $('#slickbox').toggle(400);
 $("img.toggle1").toggle();
 return false;
  });
});

Here is the HTML I'm using:

<a href="#" id="slick-toggle"><img src="images/down.png" alt="More" width="21" height="14" border="0" class="toggle1" /></a>
share|improve this question

1 Answer

See this please.

share|improve this answer
Thanks, got it working how I want now :D – Imran Jan 31 '10 at 6:55
that is great news then. – Sarfraz Jan 31 '10 at 6:59
What if you wanted multiple panels? – dg. Mar 19 '10 at 17:26
1  
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – devundef Aug 26 '12 at 13:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.