Last active
August 29, 2015 14:21
-
-
Save kjohnson/3d55c61fd808eaea07c7 to your computer and use it in GitHub Desktop.
Ninja Forms Builder Debugger
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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