Knowledge.ToString()

Tag: Javascript

  • JSDoc Tokenizer Plugin to Replace the Token With Values From Config

    If you are a JavaScript developer, you would have used the JSDoc to document your JavaScript code. I was trying to use the JSDoc for generating the documentation for my PramukhIME Javascript library. I have the core library and based on the plugin, I wanted to generate the documentation to show how the plugin works…

    |

  • How to Use Plain Old JavaScript File into Node.js as a Module

    If you want to use your plain old JavaScript file into Node.js, you need to create a module which is nothing but a fancy wrapper around your JavaScript file and then you can use all the functions of your JavaScript object into Node.js. Environment Windows 7 (64 bit) Node.js 4.4.2 (64 bit) Path already contains…

    |

  • MS Access VBA: Get/set Javascript Variable in Microsoft Web Browser ActiveX Control

    In your MS Access application, if you are using Microsoft Web browser, we may have to interact with the JavaScript variable inside the loaded page. There is no obvious method exists in the Web browser control but using the following trick you can get/set the JavaScript variable in the webpage. Quick Tip Add JavaScript function…

    |