I'm completely new to jQuery and I'm trying to create my own navigation bar which slides in from the right on click.
I found a snippet online which shows and hides my div with slideToggle but rather than it just appear I'd like it to smoothly slide in from the right. Please let me know where I'm going wrong.
Here is the jQuery:
$(document).ready(function(){
$(".menu").hide();
$("#drop-icon").show();
$('#drop-icon').click(function(){
$(".menu").slideToggle(1000);