X

7'x16' Griffin Dump 2'

USED 2017 Griffin 7x16 Gooseneck Dump Trailer

Width   7'

Length  16'

2' High Sides

Tires  ST235/80R16 (Includes Spare)

Dual Jacks 

Spreader Option 

Tounge Box 

Side Ramps 

Scissors Lift


7'x16' Griffin Dump 2'
Price: $9,500 On Sale! $8,699
Black - Dump
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 011138
VIN: 56WGU1624HE011138
Condition: Used
Year: 2017
Manufacturer: Griffin
Model: 7x16
Length: 16'
Width: 7'
Height: 2'
GVWR (lbs): 14,000
Weight (lbs): 5,505
Payload (lbs): 8,495
Features: Dual Jacks, Side Ramps, Solid Sides, Spare Tire, Tongue Box

Other Recommendations

// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });