Good news! Custom Toll Free is currently upgrading toll free number search to show even more vanity number results. Please fill out this form and let us provide a customized search for you!
Flexible Ticker Widget – Grab the impulse opportunity with this ‘ticker widget’ that cycles through the best numbers we have available each day. The presentation size and orientation varies allowing you to fit the widget into the appropriate space on your web page. As soon as a number is clicked on, the customer gets routed to the services options page to select their territory and begin the check-out process. It can’t get any easier. Try it out. The best numbers available will come streaming by – enticing your customer to take a look.
Become a Custom Toll Free Affiliate – Sign up now!
To install the widget in a webpage, three pieces of code appear – a script definition, a <div> element to contain the widget, and a script which loads the widget.
The following script definition should appear in the <head> section of the HTML document.
<script src="http://www.customtollfree.com/javascripts/widget.js" language="javascript" type="text/javascript"></script>
A <div> element, which will contain the widget must be defined, although it will have no content. The sizing is important for the correct display of the widget, and must be defined. In the code below, the style definition is given using inline CSS, although an external stylesheet may be used.
Further, the ID of the <div> element must be given exactly as shown. The Javascript function which loads the content of the widget will look for an element with a specific ID.
For the TFN Results Widget:
Example:
<div id="ctf_widget_ticker" style="border: 1px solid gray; padding: 0px; width: 250px; height: 125px; background-color: #FFFFFF;"> </div>
Finally, the function get_ticker_widget(), defined in the file widget.js included in the <head> section, must be executed. Executing this function loads the content into the widget's <div> element.
The function get_ticker_widget takes one argument:
get_ticker_widget("trackcode")
Where:
For example, if your tracking code is partner123, include the following script after the <div> element in your HTML document:
<script language="javascript" type="text/javascript"> get_ticker_widget("partner123"); </script>
<div id="ctf_widget_vert_ticker" style="border: 1px solid gray;padding: 0px;width: 120px; height: 600px; background-color: #FFFFFF;"> </div>
Finally, the function get_vert_ticker_widget(), defined in the file widget.js included in the <head> section, must be executed. Executing this function loads the content into the widget's <div> element.
get_vert_ticker_widget("trackcode")
<script language="javascript" type="text/javascript"> get_vert_ticker_widget("partner123"); </script>
<div id="ctf_widget_horiz_ticker" style="border: 1px solid gray;padding: 0px;width: 468px; height: 60px; background-color: #FFFFFF;"> </div>
Finally, the function get_horiz_ticker_widget(), defined in the file widget.js included in the <head> section, must be executed. Executing this function loads the content into the widget's <div> element.
get_horiz_ticker_widget("trackcode")
<script language="javascript" type="text/javascript"> get_horiz_ticker_widget("partner123"); </script>