T To_Bu Grünschnabel 28. Mai 2019 #11 Sempervivum hat gesagt.: Dann sollte es so gehen: Code: jQuery('#bp-contact-button').on("click", function() { $(this).fadeOut(); }); Zum Vergrößern anklicken.... Ich habe dieses wohl nicht richtig eingebaut. Nun meine Frage: wo muss das hin?
Sempervivum hat gesagt.: Dann sollte es so gehen: Code: jQuery('#bp-contact-button').on("click", function() { $(this).fadeOut(); }); Zum Vergrößern anklicken.... Ich habe dieses wohl nicht richtig eingebaut. Nun meine Frage: wo muss das hin?
Sempervivum Erfahrenes Mitglied 28. Mai 2019 #12 Z. B. hier: Code: <script type="text/javascript"> var myPosY; jQuery(window).bind( 'scroll', function() { myPosY = jQuery(window).scrollTop(); if ( myPosY >= 250) { jQuery('#bp-contact-button').fadeIn(); } else { jQuery('#bp-contact-button').fadeOut(); } }); jQuery('#bp-contact-button').on("click", function() { $(this).fadeOut(); }); </script>
Z. B. hier: Code: <script type="text/javascript"> var myPosY; jQuery(window).bind( 'scroll', function() { myPosY = jQuery(window).scrollTop(); if ( myPosY >= 250) { jQuery('#bp-contact-button').fadeIn(); } else { jQuery('#bp-contact-button').fadeOut(); } }); jQuery('#bp-contact-button').on("click", function() { $(this).fadeOut(); }); </script>