diff --git a/js/core.js b/js/core.js
index b703c34ab7bdcebc2a4f367007595f4cd892a7fb..b05e9622e5b959680c3141389cd1693b19824698 100644
--- a/js/core.js
+++ b/js/core.js
@@ -164,15 +164,3 @@ $(document).ready(function() {
         }
     });
 });
-
-// Vote form moving to the top or to the bottom
-$(window).scroll(function() {
-    var $table_offset = $('.results thead').offset();
-    if(($table_offset == undefined || $(window).scrollTop() > $table_offset.top+150) && ($('table.results').height()-150 > $(window).height())) {
-        $('#addition').before($('#vote-form'));
-        $('#tableContainer').after($('.scroll-buttons'));
-    } else {
-        $('.results tbody').prepend($('#vote-form'));
-        $('#tableContainer').before($('.scroll-buttons'));
-    }
-});