diff --git a/addons/website_instantclick/static/lib/instantclick/instantclick.js b/addons/website_instantclick/static/lib/instantclick/instantclick.js
index e5e4e3447d344675e1e27631a6ea2fc83a78c362..0a9ae16008de141510e33aac99a2b581b4ef13ec 100644
--- a/addons/website_instantclick/static/lib/instantclick/instantclick.js
+++ b/addons/website_instantclick/static/lib/instantclick/instantclick.js
@@ -50,6 +50,11 @@ var InstantClick = function(document, location) {
 	}
 
 	function changePage(title, body, newUrl, scrollY_) {
+		// fix by odoo because the script assets are loaded in the body and not in the head
+		// TODO: remove wen forward port in master
+		$(document).off()
+ 		// end
+ 		
 		var doc = document.implementation.createHTMLDocument('')
 		doc.documentElement.innerHTML = body
 		document.documentElement.replaceChild(doc.body, document.body)