Customizing Zip Code field
Hi, all. Question for you (of course!). It seems the Constituent zip code field used in Event registrations allows any character, not just numbers. Is there a way to change this?
Tagged:
0
Comments
-
If you put something like the following script somewhere in your pagewrapper (either directly or in a reusable page), it should do the trick.
<script>
var allowOnlyNums = function(selector) {
var el = document.querySelector(selector);
if(el) {
el.setAttribute('type', 'number');
el.addEventListener('keypress', function (evt) {
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode < 48 || charCode > 57) {
evt.preventDefault();
}
});
}
}
document.addEventListener('DOMContentLoaded', function () {
allowOnlyNums('#ZIP_SELECTED');
});
</script>1 -
And adding these styles will get rid of the little up/down arrows that appear in the zipcode field when you implement the previous script:
<style>
#ZIP_SELECTED {
-moz-appearance: textfield;
}
#ZIP_SELECTED::-webkit-inner-spin-button,
#ZIP_SELECTED::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
/* Removes leftover margin */
}
</style>0
Categories
- All Categories
- 6 Blackbaud Community Help
- 208 bbcon®
- 1.4K Blackbaud Altru®
- 394 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 15 donorCentrics®
- 359 Blackbaud eTapestry®
- 2.5K Blackbaud Financial Edge NXT®
- 646 Blackbaud Grantmaking™
- 563 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 934 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.4K Blackbaud Raiser's Edge NXT®
- 3.7K SKY Developer
- 242 ResearchPoint™
- 118 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 238 The Tap (Just for Fun)
- 33 Blackbaud Community Challenges
- 28 PowerUp Challenges
- 3 (Open) Raiser's Edge NXT PowerUp Challenge: Product Update Briefing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports+
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Email Marketing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Gift Management
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Event Management
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Home Page
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Query
- 779 Community News
- 2.9K Jobs Board
- 53 Blackbaud SKY® Reporting Announcements
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)

