@@ -, +, @@ -> without patch, the showing/hidding of notices content does work -> with patch, it should work correctly everywhere - try to use --- koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt @@ -16,17 +16,22 @@ "sPaginationType": "four_button" })); - $(".notice").hide(); - $(".notice-title").click(function(e){ + var noticelistener = function(e) { $(this).closest("tr").children().children(".notice").toggle(); e.preventDefault(); + }; + + $(".notice-title").click(noticelistener); + + $("#noticestable").on("draw.dt page.dt search.dt order.dt", function(e) { + $(".notice-title").click(noticelistener); }); - + }); //]]> --