Drop Down Menu -make entire length of...
How would I make the entire length of a drop down menu button clickable and not just the text-link on it. I thought it wasn't working at all until I stretched over to the left and found I needed to press on the text.
Hi Giles,
I use Jquery.
I use Jquery.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
$(".mobil-button").click(function() {
$("#menu").slideToggle('fast', function() {
$(this).attr('style', '').toggleClass('show');
});
$(this).toggleClass('active');
});
});
</script>
<script>
$(document).ready(function() {
$(".mobil-button").click(function() {
$("#menu").slideToggle('fast', function() {
$(this).attr('style', '').toggleClass('show');
});
$(this).toggleClass('active');
});
});
</script>
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.