consistent setMember on JavaFX window
问题 I'm trying to use a webview in a JavaFX based UI. The content of webview has to be changed by calling its .load(...) method whenever some actions happen. after each load, I have to set some different values on the window object in webview. These values are then used in an JavaScript code which is run on ready event of document using jQuery: $(document).ready(function() { // here I use values set on window to populate/manipulate HTML elements }); I'm following Oracle's guide to get window