Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Closescript | The Javascript function to call. |
Evaluates script function in the containing web page.
This will execute JavaScript script
function in the web page that contains
the web player or WebGL content.
// Navigates to the previous page Application.ExternalEval ("history.back()");
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { Application.ExternalEval("history.back()"); } }