私はCoffeescriptファイルを持っています。このファイルは、.has-errorタイプの最初のエラーにスクロールするか、ページに表示される.alert-dangerと入力します。javascript/coffeescriptで最初の2つのクラスを選択する方法は?
$(document).ajaxComplete ->
scroll_to_error()
@scroll_to_error = ->
if $('.alert-danger:visible:first').length > 0
$('html, body').animate { scrollTop: $('.alert-danger:visible:first').offset().top - 220 }, 'fast'
if $('.has-error:visible:first').length > 0
$('html, body').animate { scrollTop: $('.has-error:visible:first').offset().top - 220 }, 'fast'
return
しかし、私はクラス.has・エラーのいずれかまたは.alert-危険との最初の要素にスクロールします。これについて行く方法はありますか?