Categories

Tag Archives: slidebox

“SlideBox” jQuery slider

Slider, Working with jQuery scripts
  |  
March 17 2011
A simple script which allows us to achieve an effect of a sliding box with content in it. JavaScript We should include jQuery framework by pointing src attribute in the script tag to those .js files.
<script type="text/javascript" src="js/jquery-1.4.2.min.js" </script
Initialization script we place in the section.
<script type="text/javascript"$(function()
        {
        $("#link").click(function(event) {
        event.preventDefault();
        $(this).toggleClass("link2");
        $("#dropdown_box").slideToggle();
        });
    });
</script
.header-banner-right…
Read More