Skip to content
Advertisement

How to display values from google script object in html ?

HTML code

I want to display object values in this form in <p or easier solutions

JavaScript

GOOGLE SCRIPT code

function findId returns row number by typed id

JavaScript

Advertisement

Answer

In your situation, how about the following modification?

HTML & Javascript side:

From

JavaScript

To:

JavaScript

Google Apps Script side:

From

JavaScript

To:

JavaScript

Note:

  • From <p id="serial">result</p>, I guessed that you might have wanted to put the value of serial_number. So, I proposed it. If you want to show the whole object of toHtml, please modify document.getElementById("serial").innerHTML = e.serial_number; to document.getElementById("serial").innerHTML = JSON.stringify(e);.

Reference:

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement