What Script is John Chow Using for his front page?

Discussion in 'JavaScript' started by digga121, Oct 25, 2008.

  1. #1
    http://www.johnchow.com/

    The Featured News Ontop...

    Anyone know? It's kickass, Is it maybe moo fx? Ive used something similer with moofx, and jquery, but without the pagination below, anyone have an example that is close that can be modified to get like that?
     
    digga121, Oct 25, 2008 IP
  2. danger9918

    danger9918 Well-Known Member

    Messages:
    1,612
    Likes Received:
    55
    Best Answers:
    0
    Trophy Points:
    165
    #2
    Its Wordpress
     
    danger9918, Oct 25, 2008 IP
  3. MMJ

    MMJ Guest

    Messages:
    460
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #3
    <script type="text/javascript"><!--//--><![CDATA[//><!--
    function mycarousel_initCallback(carousel) {
        jQuery('#featured .list li a').bind('click', function() {
            carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
            return false;
        });
    };
    jQuery(document).ready(function() {
    	jQuery("#posts").jcarousel({
    		wrap: "both",
    		auto: 5,
            scroll: 1,
            initCallback: mycarousel_initCallback,
            buttonNextHTML: null,
            buttonPrevHTML: null
        });
    });
    //--><!]]></script>
    
    HTML:
     
    MMJ, Oct 25, 2008 IP