For some reason, toggle didn't work for me, and I received the error uncaught type error toggle is not a function
when inspecting the element in browser. So I used the following code and it started working for me.
$(".trigger").click(function () {
$('.news').attr('style', 'display:none');
})
Used jquery script file jquery-2.1.3.min.js
.