jQuery.serialScroll-无法使其工作

jQuery.serialScroll-无法使其工作,jquery,plugins,scroll,Jquery,Plugins,Scroll,我正在尝试制作水平滚动新闻页面。我的新闻显示在此结构中: <div id="news-container"> <div id="news-wrapper"> <div id="news"> Some news content goes here </div> <div id="news"> Some second news content goes here </div&

我正在尝试制作水平滚动新闻页面。我的新闻显示在此结构中:

<div id="news-container">
  <div id="news-wrapper">
    <div id="news">
      Some news content goes here
    </div>
    <div id="news">
      Some second news content goes here
    </div>
  </div>
</div>
现在我一直在尝试用jQuery添加一些next/prev按钮,并在它们上使用serialScroll,但不知道如何让它工作!我添加了按钮(它们上没有CSS,我会在它们工作时使用):

@编辑: 这是我一直关注的演示:
对于初学者来说,
$(#新闻容器)
需要是
$(#新闻容器)
或者更改
你能给一个工作演示的链接或者至少是插件站点吗?还有,你的网页上有插件吗?@Joseph,是的,我有。我通过在演示中添加链接编辑了这篇文章。我有点惊讶我没有注意到这个错误,谢谢。但是,它仍然根本不起作用/@smogg不幸的是,如果没有源代码,我不能说更多:(可能有很多东西你需要什么的源代码?插件还是我的网站?我给了你99%的代码,我的网站上还没有更多;)这是链接插件网站:和它在jQuery网站上的项目链接:
#news-container {
    overflow: hidden;
}
#news {
    width: 350px;
    display: inline-table;
}
<img class="prev" src="img/prev.gif" alt="prev" width="42" height="53" />
<img class="next" src="img/next.gif" alt="next" width="42" height="53" />
$("#news-container").serialScroll({
  target:'#news-container',
  items:'div',
  prev:'#prev',
  next:'#next',
  axis:'xy',
  navigation:'a',
  duration:700,
  force:true,
})
  prev:'#prev',
  next:'#next',
  prev:'.prev',
  next:'.next',