- jQuery Slide Toggle function not called
- $(document).ready(function() {
- $("a").click(function() {
- $(this).parent().parent().children("p").Toggle(400);
- return false;
- });
- });
- <div post>
- <div float-left location/timeInfo></div>
- <div float-right bandInfo><a>slideToggleLink</a></div>
- <p>theToggledElement</p>
- </div>
- $(this).parent().parent().children("p").Toggle(400);
- $('#post').find('p').slideToggle(400);