diff --git a/ignite-html-select.js b/ignite-html-select.js
index 2476635..8272637 100644
--- a/ignite-html-select.js
+++ b/ignite-html-select.js
@@ -82,7 +82,7 @@ IgniteTemplate.prototype.months = function (placeholder = null, shorthand = true
}
/**
- *
+ * Generates a series of days.
* @param {Number} from The starting day.
* @param {Number} to The ending day.
* @param {String} placeholder The placeholder option if set, it's value will be 0, this will be the text displayed.
@@ -106,5 +106,33 @@ IgniteTemplate.prototype.days = function (from = 1, to = 31, placeholder = null,
}
}
+ return this.innerHTML(html);
+}
+
+/**
+ * Generates a series of numbers.
+ * @param {*} from The starting number.
+ * @param {*} to The ending number.
+ * @param {*} placeholder The placeholder option if set, it's value will be -1, this will be the text displayed.
+ * @param {*} descending Whether or not the from number if first and the to number is last.
+ */
+IgniteTemplate.prototype.numbers = function (from = 0, to = 100, placeholder = null, descending = false) {
+ //Generate html and populate the template with it.
+ var html = '';
+
+ if (placeholder) {
+ html += ``;
+ }
+
+ if (descending) {
+ for (var i = to; i >= from; i--) {
+ html += ``;
+ }
+ } else {
+ for (var i = from; i <= to; i++) {
+ html += ``;
+ }
+ }
+
return this.innerHTML(html);
}
\ No newline at end of file