Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 724 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 724 Bytes

handlebars-helper-selectif

A Handlebars helper for selecting an option in a dropdown input field, based on an equality check

Idea and template is from this helper module

Installation

Download node at nodejs.org and install it, if you haven't already.

npm install handlebars-helper-selectif --save

Usage

In your JavaScript file:

var express = require("express")
var hbs = require("hbs")
hbs.registerHelper("equal", require("handlebars-helper-selectif"))
var app = express()
app.set("view engine", "hbs")
// etc...

In your Handlebars template:

{{ selectif option value }}

Tests

npm install