2013-12-08 37 views
0

好吧,我有這個coffescript在我的Rails應用程序:只會觸發如果特定的表類是avaible

onEndless = -> 
    $(window).off 'scroll', onEndless 
    url = $('.paginator .next a').attr('href') 
    $('.paginator').hide() 
    if url && $(window).scrollTop() > $(document).height() - $(window).height() - 150 
    $('.loader').show() 
    $.getScript url, -> 
     $(window).on 'scroll', onEndless 
    else 
    $(window).on 'scroll', onEndless 

$(window).on 'scroll', onEndless 

$(window).scroll() 

當時我的問題是,它被觸發的幾個網站,所以我想我可以添加一個特定ID到僅在本網站上的id="imagedocus_table"表,並且只允許觸發代碼,如果此ID是可用的!但是如何?謝謝!

我的HTML:

...... 
<table class="table" id="imagedocus_table"> 
    <thead> 
     <tr> 
      <th width="50px"></th> 
      ....... 

回答

1

你可以在你的代碼之前做

return unless $('#imagedocus_table').length 

相關問題