Slide Left-to-Right a DIV
Hi,
I have the following DIV which I am using for a slide menu.
- <div id="categories_menu" data-transition="pop" style="display: none;">
- categories list
- </div>
I want to know how can I use this linkCategories click to show the DIV with a Slide Left-to-Right over the existing content (without sliding other contents) but with just have an effect show the DIV as modal (I mean make the content covered with gray for example)
- <script type="text/javascript">
- $('#linkCategories').click(function()
- {
- });
- </script>