- ✕This summary was generated using AI based on multiple online sources. To view the original source information, use the "Learn more" links.
FileMaker Pro allows JavaScript integration within Web Viewers, enabling dynamic UI elements, third-party libraries, and two-way communication between JavaScript and FileMaker scripts. This is especially powerful for creating interactive charts, forms, maps, and data visualizations.
Calling FileMaker from JavaScript Inside a Web Viewer, JavaScript can trigger FileMaker scripts using:
FileMaker.PerformScript("ScriptName", "Optional Parameter");FileMaker.PerformScriptWithOption("ScriptName", "Optional Parameter", "3");Copied!✕Copyscript: Name of the FileMaker script.
parameter: Data passed to the script, retrievable via Get ( ScriptParameter ).
option: Controls how running scripts are handled.
Example:
function submitForm() {let name = document.getElementById("name").value;let rating = document.getElementById("rating").value;let color = document.getElementById("color").value;let param = `${name}\n${rating}\n${color}`;FileMaker.PerformScriptWithOption("Store Data from Web Form", param, "0");}Copied!✕Copy Scripting with JavaScript in web viewers | Claris FileMaker Pro Help
JS in FM
Explore all that can be done with JavaScript in FileMaker. If your computer has Git and Node.js installed on it already, and if you're familiar with Visual Studio Code, …
FileMaker JavaScript Integration | FileMaker 19 Updates - Soliant
May 20, 2020 · Using JavaScript in FileMaker significantly changes how you can architect your apps. It delivers the power to process data faster, as well as a better UI and innovative data visualizations that …
- Reviews: 22
Carafe: Your Free, Open-source JavaScript + FileMaker …
Carafe is a free open platform that facilitates creating and deploying JavaScript components in FileMaker. Start enhancing FileMaker with JavaScript now.
Examples of the Javascript functionality in FileMaker 19+
This sample file has a few examples of the Javascript functionality in FileMaker 19+. The scripting and UI is kept minimal in order to demonstrate the low amount of code required to get good functionality …
Searches you might like
How To Use JavaScript in FileMaker - The Support Group
Oct 14, 2021 · JavaScript might seem intimidating, but you can easily learn how to use JavaScript in FileMaker to extend the capabilities of your custom applications.
JavaScript | ISO FileMaker Magazine
Feb 10, 2026 · This article’s accompanying video and JavaScript code will show you how to use a simple Google Form to capture data directly into your hosted FileMaker database.
In this article I want to show you how to use JavaScript code in FileMaker: Setting values in the JavaScript with functions in FileMaker, add functions and run them.
Perform JavaScript in Web Viewer | Claris FileMaker Pro Help
Each segment of a button bar is set up to run the following script and pass in a different FileMaker script parameter value to specify a command for a JavaScript function to perform.
Adding JavaScript Bundles to FileMaker: Carafe Kitchen (2025)
Feb 25, 2026 · This article will explore how Carafe Kitchen is transforming the way FileMaker developers implement JavaScript, making it easier and more efficient than ever before.