<a href="#" class="main-grid-row-action-button" data-actions="([{'text':'Выбрать','default':true,'onclick':'tbl_product_search_crm_entity_product_list_helper.SelEl({\'id\':\'48597\',\'type\':\'E\'}, this);'}])"></a>
const element = document.querySelector(".main-grid-row-action-button");
if(element) {
const actions = element.dataset.actions;
const toParse = actions.slice(1,-1); //удаляем странные скобки
const parsed = JSON.parse(toParse);
foreach(const action in parsed) {
const startIndex = action.onclick.indexOf("id\':\'");
const endIndex = action.onclick.indexOf("\'", startIndex);
const id = action.onclick.substring(startIndex + "id\':\'".length, endIndex - startIndex);
console.log(id);
}
}