Skip to content

Instantly share code, notes, and snippets.

@paulgibbs
Created March 10, 2014 23:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulgibbs/9476911 to your computer and use it in GitHub Desktop.
Save paulgibbs/9476911 to your computer and use it in GitHub Desktop.
<?php
//bp-xprofile/admin/js/admin.js
function hide( id ) {
if ( !document.getElementById( id ) ) return false;
document.getElementById( id ).style.display = "none";
// the field id is [fieldtype]option[iterator] and not [fieldtype]div[iterator]
field_id = id.replace( 'div', 'option' );
document.getElementById( field_id ).value = '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment