Right side div doesn't obey jquery command
I gave the draggable divs a new class called rightSide when they're dragged to the right side. You can see that the class has changed because the background color turns to pink. Now that it's a new class I can ask it to show instead of toggle like this:
Code:
$("#clickMe3").click(function() {
$(".rightSide").show();
$("#showMe3").toggle();
});
But instead of showing the right side divs, it toggles back to hide just like the left side divs do. At http://myownmealplanner.com/mealplans/add you can click on the 300, 400, 800 tiles to try it out.