Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save kjohnson/3d55c61fd808eaea07c7 to your computer and use it in GitHub Desktop.

Select an option

Save kjohnson/3d55c61fd808eaea07c7 to your computer and use it in GitHub Desktop.
Ninja Forms Builder Debugger
jQuery(document).ready(function($) {
// Display Field ID next to Field Title
$(".ninja-forms-field-title").each( function() {
var obj_id = this.id;
var temp_array = obj_id.split( '_' );
var id = temp_array[ temp_array.length - 2 ];
var html = $( this ).html();
$(this).html( '<span style="color: red;">ID ' + id + '</span> | ' + html );
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment