Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the ad-inserter domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/blog.webeats.it/httpdocs/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the cookie-law-info domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/blog.webeats.it/httpdocs/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/blog.webeats.it/httpdocs/wp-includes/functions.php on line 6114
10 Novembre 2015 - Blog WebEats

Land.io : template per creare landing page

Land.io: un template HTML basato su jQuery e Bootstrap completo e semplice da usare Ancora una volta GitHub ci propone un progetto interessantissimo. Spesso chi lavora nel campo del web/webmarketing ha la necessità di dover tirare su una pagina d’attesa per manutenzione/realizzazione di un nuovo lavoro, o una pagina di atterraggio per le campagne marketing. […]

Creare un redirect in PHP, HTML, JavaScript o jQuery

Creare un redirect in PHP, HTML, JavaScript o jQuery è molto semplice. Vediamo come procedere in PHP: header(‘HTTP/1.1 301 Moved Permanently’); header(‘Location: http://www.nuovosito.com’); Normalmente il redirect più comune è il 302, ma è possibile anche specificare il tipo di redirect, ecco un esempio del 301: header(‘HTTP/1.1 301 Moved Permanently’); header(‘Location: http://www.nuovosito.com’); Vediamo invece come procedere […]

Controllare se un elemento è nascosto con jQuery

Ecco un piccolo snippet di codice per controllare se un elemento è nascosto con jQuery Per controllare se un div o un elemento in generale è nascosto (hidden), è possibile fare un piccolo controllo. Ad esempio per vedere se l’elemento con id #elemento1 è nascosto dobbiamo effettuare un controllo del genere: if(!$(‘#elemento1’).is(‘:visible’)){ alert(‘elemento1 è nascosto’); } […]