Coming from rural Queensland Australia with a hard working ethic mixed with artistic talent means for the last 20 years Damien has done the job efficiently, professionally and precisely in line with customers expectations. Damien prefers to call his clients friends
Alan delarosa
LAS VEGAS | BLACK AND GREY REALISM
I specialize in black and grey realism. I started my art journey painting murals and canvases, eventually transferring that creativity to skin. I have been tattooing across the Las Vegas valley for over 10 years. Some of my favorite subjects to tattoo are cultural and religious art work. On my free time I like to try new restaurants and enjoy a good game of pool.
document.querySelector('.custom-phone-form').addEventListener('submit', function(e) {
console.log('Form submitted'); // Add this to confirm the form is submitting
const phoneField = document.querySelector('#b26ecb6'); // phone field ID
const phoneValue = phoneField.value.trim();
console.log('Phone number:', phoneValue); // Log the value of the phone number field
const phoneRegex = /^\d{7,}$/; // regex for at least 7 digits
if (!phoneRegex.test(phoneValue)) {
e.preventDefault(); // prevent form submission
alert('Please enter a valid phone number with at least 7 digits.');
console.log('Validation failed'); // Log when validation fails
}
});