Who We Are & What we do
The Wilshire Center Koreatown Neighborhood Council is a locally elected advisory board to the City of Los Angeles.
01
Transportation & Public Safety
02
Planning & Land Use Management
03
Sustainability & Beautication
04
Homelessness & Tenant Rights & Poverty
05
Economic
Development
Let’s have a talk about something interesting!
If you have a question you would like to discuss, we'd love to hear from you.
Please feel free to contact us via phone, email, or this form! We respect your privacy and will never share this information
Location:
Wilshire Center- Koreatown NC
3450 Wilshire Blvd #108-2B, Los Angeles, CA 90010
Get In Touch
Phone
(323) 200-5532
Email
lacitync@gmail.com
info@wcknc.org
var copyEmail1 = document.getElementById("email1");
var copyEmail2 = document.getElementById("email2");
function copyEmail(emailField) {
var range, selection;
if (document.body.createTextRange) {
// For Internet Explorer compatibility
range = document.body.createTextRange();
range.moveToElementText(emailField);
range.select();
} else if (window.getSelection) {
// For other browsers
range = document.createRange();
range.selectNode(emailField);
selection = document.getSelection();
selection.removeAllRanges();
selection.addRange(range);
console.log('copy success', document.execCommand('copy'));
}
document.execCommand("copy");
if (selection) {
selection.removeAllRanges();
}
alert('Email copied!');
}
var copyButton1 = document.querySelector('.copy-email1');
copyButton1.addEventListener('click', function() {
copyEmail(copyEmail1);
});
var copyButton2 = document.querySelector('.copy-email2');
copyButton2.addEventListener('click', function() {
copyEmail(copyEmail2);
});