jrGenCore_profile_notes
Thanks

--
The Patria Company - patriaco.com / quality-trades.com / a-t.life - doing Jamroom since v3
updated by @the-patria-company: 10/03/16 09:30:17AM
// Profile Notes
$_tmp = array(
'name' => 'profile_notes',
'label' => 'research notes',
'help' => 'Enter any research notes you would like to add to this ancestor profile.',
'type' => 'textarea',
'valdiate' => 'printable',
'required' => false
);
jrCore_form_field_create($_tmp);
<a onclick="jrGenCore_profile_notes('{$_profile_id}');">
/**
* Load profile notes on click
* @param pid int Profile ID
*/
function jrGenCore_profile_notes(pid){
var b = $('#profile_notes_box');
if (b.is(':visible')) {
b.slideUp('fast');
}
else {
jrGenCore_load_notes(pid, function()
{
b.slideDown('fast');
});
}
}
<div id="profile_notes_box"..........