VIEW PRODUCT CATEGORIES

Unlock the Value of Your Treasures

Discover the power of Tangible Investments, where owners of receive top dollar. With a proven track record of acquiring rare coins, fine jewelry, art, and antiques from people like you, we have paid out millions to uncover the hidden value in these special pieces. Let our expert team evaluate your treasures and provide you with a fair and accurate appraisal. Fill out the form below to get the appraisal process started and embark on a journey of unlocking the true worth of your cherished possessions.

// Enqueue the script for Quick Edit function enqueue_quick_edit_script($hook) { if ($hook == 'edit.php') { wp_enqueue_script('quick-edit-custom', get_template_directory_uri() . '/js/quick-edit-custom.js', array('jquery'), '', true); } } add_action('admin_enqueue_scripts', 'enqueue_quick_edit_script'); // JavaScript file (quick-edit-custom.js) jQuery(function($){ $('#the-list').on('click', '.editinline', function(){ var post_id = $(this).closest('tr').attr('id'); var $inline_data = $('#inline_' + post_id); var out_of_stock_note = $inline_data.find('.out_of_stock_note').text(); $('input[name="out_of_stock_note"]').val(out_of_stock_note); }); });