An open API service indexing awesome lists of open source software.

https://github.com/khalidsheet/html-for

A simple library that make html do for loop [ JUST FOR FUN ]
https://github.com/khalidsheet/html-for

for html html-for javascript js loops

Last synced: 12 months ago
JSON representation

A simple library that make html do for loop [ JUST FOR FUN ]

Awesome Lists containing this project

README

          

# HTML CAN DO FOR LOOP NOW!
-----

## Usage
#### Download the package then add it to your html page
```html

```
----
#### In your main file type the following:
```js
let htmlFor = new HtmlFor();
htmlFor.run(); // will run the loops :)
```
-----
#### Html Code
```html

Hey I will repeat myself 10 times

```
##### - Notice that {key} and {condition} attributes are Required!
-----
## Rendered Code will be:
```html


Hey I will repeat myself 10 times



Hey I will repeat myself 10 times



Hey I will repeat myself 10 times



Hey I will repeat myself 10 times



Hey I will repeat myself 10 times



Hey I will repeat myself 10 times



Hey I will repeat myself 10 times



Hey I will repeat myself 10 times



Hey I will repeat myself 10 times



Hey I will repeat myself 10 times

```