Cold Spring Tavern

Live Music

Upcoming Events

Brian Kinsella Band

Tom Ball and Kenny Sultan

Blend of guitar and harmonica blues, rag, and good-time music

Cuyama Mama and the Hot Flashes

The most rockin’, foot stompin’, apron flauntin’ musical act in the Cuyama Valley! Bring your dancing shoes!

Tom Ball and Kenny Sultan

Blend of guitar and harmonica blues, rags, and good time music

The Winetones

Santa Barbara based duo who are bringing their Folk & Blues based originals and true classic tunes to another fine CST appearance. Don’t miss these talented multi-instrumental songsters!

Tom Ball and Kenny Sultan

Blend of guitar and harmonica blues, rags, and good time music

Sage City Band

Tom Ball and Kenny Sultan

Blend of guitar and harmonica blues, rags, and good time music

Will Stephens Band

Teresa Russell

Lenny Kerley Band

Past Events

$(document).ready(function() { const today = new Date(); today.setHours(0, 0, 0, 0); // Normalize time $('.upcoming-events .event').each(function() { const text = $(this).find('.elementor-icon-list-text').text().trim(); // Match a date in the format: "Month Day, Year" const dateMatch = text.match(/([A-Za-z]+ \d{1,2}, \d{4})/); if (dateMatch) { const eventDate = new Date(dateMatch[0]); if (!isNaN(eventDate.getTime()) && eventDate < today) { $('.past-events').append($(this)); } } }); });