I have an issue regarding the jQuery click event. The first time the page get loaded it does not work. After a refresh it works fine. I assume it has to do with the browser caching the files somehow.
This is the code:
$(window).ready(
    function() {
        $("#language-input").click(function() {
            $("#language-dropdown").show();
        });
Any ideas what I am missing?
 
    