main.js 217 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 /** * Created by ossi on 8.12.2014. */ $ = jQuery; $(document).ready(function() { $('#open-user-login').click(function() { $('#not-logged').slideToggle(300); $(this).toggleClass('active'); }); });