Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
11.4
11.5
12.0
12.1
12.2
12.3
12.4
12.5
13.0
13.1
Statistic
FMM
Blog
WebView.RunJavaScriptReturnTitle
Run the specified JavaScript and then returns the value of the title property to FileMaker.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
WebView | 1.4 | ✅ Yes | ✅ Yes | ❌ No | ❌ No | ✅ Yes |
Parameters
Parameter | Description | Example |
---|---|---|
WebViewerRef | Either the Web Viewer Object Name or the Web Viewer ID as returned by "WebView.FindByName" function. | |
Javascript | the text source of the javascript |
Description
Run the specified JavaScript and then returns the value of the title property to FileMaker.To return a result of the JavaScript to FileMaker, simply set "document.title" to the return value. Why did we do this? Because it was the way we could get the result back from the web view on windows. Use "\n" in javascript strings for a newline character.
See newer WebView.Evaluate function which works better on Windows and returns results.
Check JS Functions for JavaScript engine for cross platform code to run without web viewer.
For Windows with Edge browser or Web Direct, you may use the Perform JavaScript script step in FileMaker 19 instead.
Examples
Return the htmlcode of a field as string:
MBS( "WebView.RunJavaScriptReturnTitle"; "browser"; "document.title=document.getElementById('td_ProcName_v').innerHTML;" )
Return the text of a html item referenced by id as string:
MBS( "WebView.RunJavaScriptReturnTitle"; "browser"; "document.title=document.getElementById('Result').innerText;" )
See also
Example Databases
Blog Entries
This function checks for a paid license.
Created 18th August 2014, last changed 24th June 2021
