OOO.handlebars
...
<!-- 마크업 - '구글홈으로이동' Button -->
<a href="#" class="btn_delivery" id="_GoogleBtn">구글홈으로이동</a>
...
OOO.js
...
events: {
'click #_GoogleBtn': '_goToGooglePage' // '구글홈으로이동' 버튼을 눌렀을 때, Click Event 발생 => _goToGooglePage 함수 실행
},
...
_goToGooglePage: function ( e ){ // e: event
e.preventDefault();
location.href = "www.google.com"; // URL로 리다이렉트
}