cloud9 preview running application

0

window.location.pathname = newPath; document.location.search = params;

these methods don't run so i can not change url and control my lambda code

  • Could you elaborate what are you trying to achieve? Are you trying to manipulate browser url from lambda?

asked a year ago698 views
3 Answers
0

Hi - Can you please provide more details on what type of application/work you are trying to do on cloud9? Also did you get a chance to review Previewing running applications in the AWS Cloud9 Integrated Development Environment (IDE)

profile pictureAWS
EXPERT
answered a year ago
0

for example the code below. when i click button it doesn't change url in cloud9 "Previev Running Application" which starts a browers. on the other hand if i deploy it cloud app the url is changed.

<input type="button" value="Load new document" onclick="newDoc()"> <script type="text/javascript"> function newDoc() { alert('hello'); window.location.assign("https://www.hurriyet.com.tr") } </script>
answered a year ago
0

Hi, by design, applications that are loading inside of built-in Preview browser in Cloud9 IDE are rendered in secured sandboxed iframe, which prevents application from modifying parent window location. To preview application without this limitation, you could open application preview in separate pop out browser tab https://docs.aws.amazon.com/cloud9/latest/user-guide/app-preview.html#app-preview-app-open-tab

AWS
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions