• The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked!
  • Information: Safety & Support
    Resources here are generally safe, but false positives may occur on Virustotal due to certain coding techniques. Exercise caution and test before use.
    Consider buying licenses to support developers. Your security is our priority.
preview-xl (2).jpg


Tools for suggesting business names, and organizations. It was developed on a pure javascript platform, with compact features and easy integration with any platform.

1.0.0 (12/28/2022) First release

Features​

+ Business name suggestion
+ Pure Javascript
+ Cross-browser


Instructions​

1. Download​

You have downloaded the Javascript Business Name Suggestion Tool content.zip file. When you extract the contents you will find:

business-name-suggestion-tool/
├── index.html
├── css/
│ ├── style.css/
├── js/
│ └──namesuggestion.js
│ └──main.js





2. Include JS​

Place the <script> tag for our JavaScript bundle before the closing </body>.

3. Insert html​

In body tag insert html:

4. Generate list of suggested names from a phrase​

var items = StartupNameGenerator(input);

5. Example​

const form = document.getElementById('form');
form.addEventListener('submit', (event) => {
event.preventDefault();
let input = document.getElementById("input").value;
var items = StartupNameGenerator(input);
let results_elem = document.getElementById("results");
results_elem.innerHTML = "";
items.forEach((item, idx) => {
const item_elem = document.createElement("a");
item_elem.className = "result-item";
item_elem.target = "_blank";
item_elem.href = `#?key=${item.toLowerCase()}`;
item_elem.innerHTML = `${item}`;
results_elem.appendChild(item_elem);
});
});




Rate
  • Like
Reactions: raz0r
1.0.0Version
47 Downloads
496 Views
0.00 star(s) 0 ratings
Last update

More resources from 𝕭𝖎𝖑𝖑𝕸𝖆𝖗𝖛𝖎𝖑𝖑𝖔

Similar resources

Palleon - Javascript Image Editor hack4devil
Download Palleon - Javascript Image Editor 43256130
0.00 star(s) 0 ratings
Downloads
153
Updated
Text To Speech Convertor In JavaScript evilhand555
A script that converts any of your texts into audio in 9 different voices
0.00 star(s) 0 ratings
Downloads
29
Updated
1C-Bitrix: Site management Business raz0r
Download 1C-Bitrix: Site Management Business Source Code NULLED
5.00 star(s) 1 ratings
Downloads
211
Updated
66vcard - Digital Business Card Builder (SAAS) raz0r
Download 66vcard Digital Business Card Builder SAAS Codecanyon ID 34256319
0.00 star(s) 0 ratings
Downloads
55
Updated
Accufy - SaaS Business, Invoicing & Accounting Software raz0r
Download Accufy SaaS Business, Invoicing & Accounting Software Codecanyon 25039709
0.00 star(s) 0 ratings
Downloads
176
Updated
Top