So I ran into a rather interesting need of a client. They wanted to have a link to a downloadable file but also have a redirect to a thank you page. I found that I could add some data to the link that allowed me to write some jQuery and allow the link and thank you...
I found the need to make it easier to copy something into the clipboard so I wrote this little Javacscript function based off of what I found in a web search. function copyFunc(idToCopy) { /* Get the HTML Element based on ID passed to function */ var copyText =...
So there are times where you want to try to protect the video on a page. Here is the jQuery that you should use. <script> jQuery(document).ready(function() { if (jQuery(‘.et_pb_video_box').length !== 0) {...