Welcome aboard! We are happy you are here and wish you good net-raft!
// jade file
doctype 5
html
head
block head
script(src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js')
script(src='/javascripts/script.js')
body
block content
div
input(type="text", id="message")
input(type="button", value="send", id="send") 
// script.js
$(document).ready(function () {
console.log($("#message").val("Test"));
}); 
The most helpful NODEJS solutions