I have created a simple "Show and Hide" toggle using Jquery but I want it to be specific to each div as I will be reusing the Class.
I know I have to use the (this) function but cant seem to place it correctly.
many thanks for you kind help.
$(document).ready(function() {
$('.showmenu').click(function() {
$('.menu').toggle("toogle");
});
});