PluginProbe
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) / 1.2.2
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) v1.2.2
9.1.2 9.1.1 9.1.0 9.0.2 9.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 All 153 releases
wp-analytify / js / script.js

script.js in Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) 1.2.2, at js/script.js

35 lines 833 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(document).ready(function ($) {
2 (function() {
3 [].slice.call( document.querySelectorAll( 'select.cs-select' ) ).forEach( function(el) {
4 new SelectFx(el);
5 } );
6 })();
7
8
9 $('#get_access_code_link').click(function(){
10
11 $('#paste_access_code').show();
12 });
13
14
15 $('.test').click(function () {
16 $('#modal-content').modal({
17 show: true
18 });
19 });
20 $(".cs-options li a").click(function() {
21 $($(this).data("target")).fadeIn('slow');
22 });
23 $(".analytify_popup_clsbtn").click(function() {
24 $(this).closest(".analytify_popup").fadeOut('slow');
25 });
26 $(".trigger").click(function() {
27
28 $(".menu").toggleClass("active");
29 });
30 $(".btn-icon a").click(function() {
31
32 $(".menu").removeClass("active");
33 });
34 });
35