educational

Scripting Treasures Volume 1

Santa brought me a new laptop for Christmas, and while I'm in the process of transferring files from my old box to my new, I've begun uncovering lots of treasures. To start off the New Year, here's a selection from my collection of digital "Post-It" Notes. Enjoy:

Play An Audio Clip OnMouseOver
Ever wish you could have some hot chick purring "Cum In" when a surfer hovered over your "Enter" link (or any of a hundred other cool uses)? Here's the code:

<A href="#" onMouseOver="document.all.music.src='sound.wav'">TEXT or IMAGE</A>
<BGSOUND src="#" id=music loop=1 autostart="true">

Status Bar Masking OnMouseOver
Here's a trick that many newbies want to know how to do, even though most uses of it will be considered "blind linking" and may cause problems with sponsors and link lists, etc. Just add this code within your linking code:

onmouseout="self.status='';return true"
onmouseover="self.status='DESIRED TEXT';return true"

Launch Multiple OnClick Events
Sometimes you wish to fire multiple JavaScripts using a single event handler. One example is using a button to launch a new window while simultaneously changing (or NOT changing) the launching page. There are lots of cool applications for this, and here's a handy snippet of the underlying code to help you along your way. Put this first part in your <HEAD>:

<SCRIPT language="Javascript">
function MultiFuncs() {

onclick="window.open('http://new-window-url.com', '_blank',
'toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes')"

onclick="window.open('http://base-window-url.com', '_self')"

}

// MULTI LOAD -->
</SCRIPT>

Then add this part to the button, text, or image link you wish to use:

OnClick="MultiFuncs()"

Hotlinking Protection With .htaccess
To prevent content theft on Apache Webservers with mod_rewrite, make a secure content directory then put all your images and other content you wish to protect into that directory, ensuring that all of your image URLs point to this location. Then make an ".htaccess" file for this directory that contains:

AuthUserFile /dev/null
AuthGroupFile /dev/null

RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com/subdomain/ [NC]
RewriteCond %{HTTP_REFERER} !^http://yourdomain.com/subdomain/ [NC]
RewriteRule /* http://www.yourdomain.com/subdomain/ [R,L]

Change the domain name values to match your site, then upload this file in ASCII mode into the directory you wish to protect. Calls for content in that directory that come from OUTSIDE the URLs specified above will be redirected to the URL specified.

My Favorite Script Sources
Here's a bookmark collection that shows locations for finding just about any script you wish to have, and quite a few you probably didn't know existed, but may want to have later :)

Well there you have it: a few choice JavaScripts to spice up your pages, a quick bit of code to protect those pages, and a directory of all things scripting. Here's to a "dynamic" New Year!

Copyright © 2024 Adnet Media. All Rights Reserved. XBIZ is a trademark of Adnet Media.
Reproduction in whole or in part in any form or medium without express written permission is prohibited.

More Articles

trends

AI Is Coming: A Look at What's Ahead and Its Implications

The AI era has dawned, and the impact of this technology is beginning to be felt in the online adult industry. We are already seeing a plethora of content, synthetic interactions and customizable avatars enabled by artificial intelligence.

Alejandro Freixes ·
opinion

Navigating Fraud Prevention in Credit Card Transactions

In the digital age, credit card transactions are essential to global commerce, providing unmatched convenience for consumers and businesses alike. With this convenience, however, comes the risk of credit card fraud, which can result in considerable financial losses and harm brand reputation.

Jonathan Corona ·
opinion

A Guide to Avoiding Scams in Hard Link Media Buying

‘If it sounds too good to be true, it probably is.” So cautionary wisdom reminds us, yet people still get scammed all the time. Fortunately, there are “red flags” you can watch for to help you identify scams and thereby avoid them.

Juicy Jay ·
opinion

The Dos and Don'ts of AI-Generated Content

AI is a hot topic. From automation to personal assistance to content generation, AI technology is already impacting our daily lives. Many industries, including adult, have had positive results using AI for customer support and marketing.

Cathy Beardsley ·
opinion

Strategic Upscaling of Non-4K Content

If content is king in adult, then technical quality is the throne upon which it sits. Technical quality drives customer acquisition and new sales, while cementing retention and long-term loyalty.

Brad Mitchell ·
profile

'Traffic Captain' Andy Wullmer Braves the High Seas as Spirited Exec

Wullmer networked and hobnobbed, gaining expertise in everything from ecommerce to SEO and traffic, making connections and over time rising through the ranks of several companies to become CEO of the mobile business arm of TrafficPartner.

Alejandro Freixes ·
opinion

To Cloud or Not to Cloud, That Is the Question

Let’s be honest. It just sounds way cooler to say your business is “in the cloud,” right? Buzzwords make everything sound chic and relevant. In fact, someone uninformed might even assume that any hosting that is not in the cloud is inferior. So what’s the truth?

Brad Mitchell ·
opinion

Upcoming Visa Price Changes to Registration, Transaction Fees

Visa is updating its fee structure. Effective April 1, both the card brand’s initial nonrefundable application fee and annual renewal fee will increase from $500 to $950. Visa is also introducing a fee of 10 cents for each settled transaction, and 10 basis points — 0.1% — on the payment volume of certain merchant accounts.

Jonathan Corona ·
opinion

Unpacking the New Digital Services Act

Do you hear the word “regulation” and get nervous? When it comes to the EU’s Digital Services Act (DSA), you shouldn’t worry. If you’re complying with the most up-to-date card brand regulations, you can breathe a sigh of relief.

Cathy Beardsley ·
opinion

The Perils of Relying on ChatGPT for Legal Advice

It surprised me how many people admitted that they had used ChatGPT or similar services either to draft legal documents or to provide legal advice. “Surprised” is probably an understatement of my reaction to learning about this, as “horrified” more accurately describes my emotional response.

Corey D. Silverstein ·
Show More