For some reason this doesn't always work in safari and functions even less on the iPad, any guesses? =(
$(".dropdown .sub").click(function () {
$("#menu .holder").toggle();
});
For some reason this doesn't always work in safari and functions even less on the iPad, any guesses? =(
$(".dropdown .sub").click(function () {
$("#menu .holder").toggle();
});
After looking at the web page provided It appears that the toggle selector has many children. Something like this:
This will not work:
You will need to find the first sibling element.
Find a jsfiddle of this here ->http://jsfiddle.net/rCN9n/5/