Tagged Questions
0
votes
1answer
763 views
Toggle Blind Effect
Is there a way to alter this script to be used as the blind effect.
// Andy Langton's show/hide/mini-accordion - updated 23/11/2009
// Latest version @ http://andylangton.co.uk/jquery-show-hide
// ...
0
votes
2answers
802 views
Simple Toggle with Mootools: What am I doing wrong?
<script type="text/javascript">
$(document).ready(function(){
$("#trigger").click(function () {
$("#trigger-banner").toggle();
});
</script>
Help? Thanks!
0
votes
2answers
98 views
Same JS function — Many times?
I previously got this (useful!) answer about using .next() for same DIV blind effect.
However, I can't seem to get this simple function to work for more than one DIV at the same time:
...
0
votes
2answers
1k views
Blind with jQuery
I'm trying to write a blind function that would close a DIV in a display:none mode.
The unseen DIV is inside a wider DIV, containing the blind trigger.
This:
$(document).ready(function(){
...