Skip to content

‘await’ call doesn’t wait

My app is trying to upload files to S3. S3 upload works fine. The problem is that after imageUpload returns, in handleSubmit(), it claims that the return value for imageUpload() is undefined. I suspect that it has to do with async/await, which I’m not too familiar with. Can any expert explain what I&#82…

Javascript: multi level menu slide on button click

Could you help me with this code? I would like to make a menu slide with multi level but the element “slide-panel” is not showing up… Answer I’m not a big fan of mixing pure javascript with jquery .. so the next code is in jquery .. Also I prefer to use add/remove/toggleClass instead o…

How to Not Transfer Blank Column to Master Sheet?

This code works perfectly until the ‘if’ is added. The ‘if’ should prevent the row that has no data in column 2 from being transferred to the master sheet. How to I make data that has not data prevent …