I am saving the pdf files as base64 in database on user action.At some point I need to open the file in new tab which the file is encoded as base64.I'm using the below code.
window.open("data:application/pdf;base64,"+data);It is working fine for files, size less than 1.5MB, i'm able to open those files in new tab.But for files greater than 1.5MB this is not working, it's opening blank tab.
I'm not sure why it is not working. Is there any workaround