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

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 ·
profile

WIA Profile: Holly Randall

If you’re one of the many regular listeners to Holly Randall’s celebrated podcast, you are already familiar with her charming intro spiel: “Hi, I’m Holly Randall and welcome to my podcast, ‘Holly Randall Unfiltered.’ This is the show about sex, the adult industry and the people in it.

Women In Adult ·
trends

What's Hot Now: Leading Content Players on Trending Genres, Monetization Strategies

The juggernaut creator economy hurtles along, fueled by ever-ascendant demand for personality-based authenticity and intimacy — yet any reports of the demise of the traditional paysite are greatly exaggerated.

Alejandro Freixes ·
opinion

An Ethical Approach to Global Tech Staffing

One thing my 24-year career as a technologist working to support the online adult entertainment industry has taught me about is the power of global staffing. Without a doubt, I have achieved significantly more business success as a direct result of hiring abroad.

Brad Mitchell ·
opinion

Finding the Right Payment Partner

Whenever I am talking with businesses that are just getting started, one particular question comes up a lot: “How do I get a merchant account?” It’s a simple question, but it has a complicated answer.

Jonathan Corona ·
opinion

The Taxman Cometh for Every Business

February may be the month of romance, but it is also a time when we need to think about something that inspires very little love: taxes. April is not far away, and the taxman is always waiting. This year, federal and most state income taxes are due Monday, April 15.

Cathy Beardsley ·
Show More