Open links in new tab
    • Work Report
    • Email
    • Rewrite
    • Speech
    • Title Generator
    • Smart Reply
    • Poem
    • Essay
    • Joke
    • Instagram Post
    • X Post
    • Facebook Post
    • Story
    • Cover Letter
    • Resume
    • Job Description
    • Recommendation Letter
    • Resignation Letter
    • Invitation Letter
    • Greeting Message
    • Try more templates
    Feedback
  1. 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!
    • script: 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!
    Feedback
  2. Scripting with JavaScript in web viewers | Claris FileMaker Pro Help

    You can also use JavaScript in a web viewer and FileMaker scripts to call each other and pass information between them. For example, when a user creates events in an int…
    From Javascript in A Web Viewer to A Filemaker Script

    After the webpage has finished loading in a web viewer, JavaScript can call one of the following functions to run a FileMaker script in the current file: where 1. scriptis a string containing the name of a FileMaker script (the name is not case-sensitive) 2. …

    From A Filemaker Script to Javascript in A Web Viewer

    In a FileMaker script, the Perform JavaScript in Web Viewer script step can call a JavaScript function and pass it optional parameters. See Perform JavaScript in Web Viewer script step.

    Example

    This example shows how to create simple user interface elements in a web viewer, set their values to those stored in a FileMaker table, allow the user to change the values in the web viewer, and submit the new values back to the FileMaker table. 1. Create a ta…

    Notes

    1. When you set up a web viewer to perform FileMaker scripts, you must select the Allow JavaScript to perform FileMaker scr…
    2. Because FileMaker WebDirect is subject to a same-origin policy in web browsers for security, JavaScript in a web viewer and Fi…

  3. 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, …

  4. FileMaker JavaScript Integration | FileMaker 19 Updates - Soliant

    • See More

    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 …

  5. 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.

  6. 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 …

  7. 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.

  8. 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.

  9. 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.

  10. 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.

  11. 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.