dealspl.us Tools

Integrate dealspl.us Into Your Website

What is it?

The dealspl.us Plus button is an invaluable tool for website publishers and retailers who want to submit their products and/or services to dealspl.us. By doing so, retailers can enjoy increased traffic as well as get an idea of which of their products are popular.

The Plus button works simply by detecting the page that the button is placed ond and, when clicked, will submit the page to dealspl.us either as a new submission or as a plus.

Script Requirements

In order to correctly display the Plus button, you must declare a valid DOCTYPE on the page that you wish to insert the button.

Here's an example DOCTYPE for HTML 4.01:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "://www.w3.org/TR/html4/strict.dtd">

For more information regarding Doctypes, please visit the W3C's Recommended list of DTDs.

Insertion Examples

There are two different ways the Plus button can be displayed on your page.

Submit plus button with plus number

Example 1: Simple Plus Button
<script type="text/javascript" src="http://dealspl.us/dptools/js/1/plusbtn"></script>
Example 2: Customize the data sent by the Plus Button
<script type="text/javascript">
    var _dp_tools_URL                = 'http://example.com/product/url';
    var _dp_tools_TITLE              = 'Product Title';
    var _dp_tools_IMG_URL            = 'http://example.com/img/url/1234.jpg';
    var _dp_tools_DESC               = 'Product Description';
    var _dp_tools_LIST_PRICE         = '$149.99';
    var _dp_tools_PRICE              = '$99.99';
    var _dp_tools_PRICE_AFTER_REBATE = '$79.99';
    var _dp_tools_SHIP_PRICE         = 'Free';
</script>
<script type="text/javascript" src="http://dealspl.us/dptools/js/1/plusbtn"></script>

All of the variables listed above are optional. You can use as many (or as few) as you'd like.

Small submit button only

Example 1: Simple Plus Button
<a href="http://dealspl.us/add.php?pbtn=1&pbtnNw=1">
    <img src="http://dealspl.us/images/plus/plus.gif" border="0">
</a>
Example 2: Customize the data sent by the Plus Button
<a href="http://dealspl.us/add.php?pbtn=1&pbtnNw=1&url=URL&title=TITLE&price=PRICE">
    <img src="http://dealspl.us/images/plus/plus.gif" border="0">
</a>

Submit URL Details:

url=URL
Should be unique and not contain session or user data
Please URL-encode the value
title=TITLE
Please also URL-encode the product title
price=PRICE
Should be a dollar amount or 'Free'
Please also URL-encode the product price

We're constantly making adjustments and adding new features to our Plus button. Keep checking back for improvements to this valuable tool!