Flash Sale: We’ve sold out Men 21-39 and Women 30s and 40s for this event. Purchase tickets for only $15 until the gender balance evens out with code “EvenSteven”
Wednesdays @ Wonderland: Jen Glantz, “Finally the Bride”

ABOUT THIS EVENT
Introducing a brand-new author series from WHC at Wonderland Books (7920 Norfolk Ave, Bethesda), an independent, women-owned bookstore. Celebrating Jewish voices with heartfelt storytelling and wit, each author will be in conversation with a member of our clergy. We can’t wait to see you there!
About the Book
From the woman who made a career out of being a professional bridesmaid comes a refreshingly honest, touching, and humorous memoir about finding love and finally the bride becoming herself.
After helping hundreds of strangers navigate their walk down the aisle, Jen Glantz thought she had seen it all — until it was her turn. When a psychic once told her she’d never find love, Glantz set out to prove her wrong, embarking on fourteen first dates in one month. But finding love was just the beginning.
In this candid and witty account, Glantz takes readers through her unconventional journey from professional bridesmaid to pandemic bride, learning that sometimes the perfect wedding isn’t what you imagined at all. With stories that will make you laugh, cry, and question everything you thought you knew about modern love and marriage, “Finally the Bride” proves that there’s no right way to tie the knot – as long as you’re true to yourself.
A must-read for anyone who’s ever felt pressure to have the perfect wedding, struggled with relationship expectations, or simply wondered what really happens behind the scenes of all those picture-perfect celebrations.
About the Author
Jen Glantz is the founder of Bridesmaid for Hire, the world’s first company where strangers can hire a bridesmaid for their wedding. She’s the author of “Always a Bridesmaid (for Hire)” and “All My Friends Are Engaged.” Jen lives in Brooklyn with Adam (the husband), Gemma (the baby), and Goofy (the dog). She spends her free time eating slices of pizza and trying to figure out how to wear Forever 21 crop tops at the delightful age of 36.
View our full list of Lectures & Talks for 2025-26.
Register
.wForm form{text-align: left;}
document.addEventListener(“FA__DOMContentLoaded”, function(){
const FORM_TIME_START = Math.floor((new Date).getTime()/1000);
let formElement = document.getElementById(“tfa_0”);
if (null === formElement) {
formElement = document.getElementById(“0”);
}
let appendJsTimerElement = function(){
let formTimeDiff = Math.floor((new Date).getTime()/1000) – FORM_TIME_START;
let cumulatedTimeElement = document.getElementById(“tfa_dbCumulatedTime”);
if (null !== cumulatedTimeElement) {
let cumulatedTime = parseInt(cumulatedTimeElement.value);
if (null !== cumulatedTime && cumulatedTime > 0) {
formTimeDiff += cumulatedTime;
}
}
let jsTimeInput = document.createElement(“input”);
jsTimeInput.setAttribute(“type”, “hidden”);
jsTimeInput.setAttribute(“value”, formTimeDiff.toString());
jsTimeInput.setAttribute(“name”, “tfa_dbElapsedJsTime”);
jsTimeInput.setAttribute(“id”, “tfa_dbElapsedJsTime”);
jsTimeInput.setAttribute(“autocomplete”, “off”);
if (null !== formElement) {
formElement.appendChild(jsTimeInput);
}
};
if (null !== formElement) {
if(formElement.addEventListener){
formElement.addEventListener(‘submit’, appendJsTimerElement, false);
} else if(formElement.attachEvent){
formElement.attachEvent(‘onsubmit’, appendJsTimerElement);
}
}
});
if(wFORMS.behaviors.prefill) wFORMS.behaviors.prefill.skip = true;
#tfa_FirstName,
*[id^=”tfa_FirstName[“] {
width: 244px !important;
}
#tfa_FirstName-D,
*[id^=”tfa_FirstName[“][class~=”field-container-D”] {
width: auto !important;
}
#tfa_FirstName-L,
label[id^=”tfa_FirstName[“] {
width: 184px !important;
min-width: 0px;
}
#tfa_LastName,
*[id^=”tfa_LastName[“] {
width: 240px !important;
}
#tfa_LastName-D,
*[id^=”tfa_LastName[“][class~=”field-container-D”] {
width: auto !important;
}
#tfa_LastName-L,
label[id^=”tfa_LastName[“] {
width: 200px !important;
min-width: 0px;
}
#tfa_Email,
*[id^=”tfa_Email[“] {
width: 244px !important;
}
#tfa_Email-D,
*[id^=”tfa_Email[“][class~=”field-container-D”] {
width: auto !important;
}
#tfa_Phone,
*[id^=”tfa_Phone[“] {
width: 240px !important;
}
#tfa_Phone-D,
*[id^=”tfa_Phone[“][class~=”field-container-D”] {
width: auto !important;
}
#tfa_3716,
*[id^=”tfa_3716[“] {
width: 83px !important;
}
#tfa_3716-D,
*[id^=”tfa_3716[“][class~=”field-container-D”] {
width: auto !important;
}
#tfa_8758,
*[id^=”tfa_8758[“] {
width: 299px !important;
}
#tfa_8758-D,
*[id^=”tfa_8758[“][class~=”field-container-D”] {
width: auto !important;
}
#tfa_8758-L,
label[id^=”tfa_8758[“] {
width: 299px !important;
min-width: 0px;
}
function calculateDiscountCode(coupon,subtotal)
{
//define discount codes
//percentage-based discount codes.
var percent5 = [‘whc5pct’];
var percent10 = [‘whc10pct’];
var percent18 = [‘whc18pct’];
var percent20 = [‘whc20pct’];
var percent25 = [‘whc25pct’];
var percent50 = [‘whc50pct’];
var percent100 = [‘whc100pct’];
//dollar-based discount codes
var dollars5 = [‘whc5dlrs’];
var dollars10 = [‘whc10dlrs’];
var dollars15 = [‘whc15dlrs’];
var dollars18 = [‘whc18dlrs’];
//set default values to no discount
var amount = subtotal;
var coupon = coupon;
var percentDiscount = 1;
var dollarDiscount = 0;
//adjust based on percent if discount code matches
if(percent5.includes(coupon)){percentDiscount=.95}
else{if(percent10.includes(coupon)){percentDiscount=.9}
else{if(percent18.includes(coupon)){percentDiscount=.82}
else{if(percent20.includes(coupon)){percentDiscount=.8}
else{if(percent25.includes(coupon)){percentDiscount=.75}
else{if(percent50.includes(coupon)){percentDiscount=.5}
else{if(percent100.includes(coupon)){percentDiscount=0}
}}}}}};
//adjust based on dollar if discount code matches
if(dollars5.includes(coupon)){dollarDiscount=5}
else{if(dollars10.includes(coupon)){dollarDiscount=10}
else{if(dollars15.includes(coupon)){dollarDiscount=15}
else{if(dollars18.includes(coupon)){dollarDiscount=18}
}}};
//calculate and ensure non-negative total
var totalAmount = amount*percentDiscount-dollarDiscount;
if(totalAmount < 0){totalAmount = 0};
//find the checkbox element and proceed if it exists
var checkboxValue = document.getElementById('tfa_2440');
if(checkboxValue){if(totalAmount == 0){checkboxValue.checked=false;}
else{checkboxValue.checked=true;}
//use the "click" function so FormAssembly knows it's changed
//this simulates a mouse click (i.e. reverses the previous true/false values)
checkboxValue.click();
}
return totalAmount;
};
Wednesdays@Wonderland: Jen Glantz
Click SUBMIT only once to prevent your form from being processed multiple times.
Organizer + RSVP
Washington Hebrew Congregation, at its heart, is a community. Progressive, inclusive, caring, and compassionate, we embrace our connection to Reform Judaism and the warmth and wonder of God.
LOCATION
🔒 TBD
The location for this event is private or will be announced later.