• The default language of any content posted is English.
  • 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
46 Downloads
386 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
142
Updated
1C-Bitrix: Site management Business raz0r
Download 1C-Bitrix: Site Management Business Source Code NULLED
5.00 star(s) 1 ratings
Downloads
173
Updated
Accufy - SaaS Business, Invoicing & Accounting Software raz0r
Download Accufy SaaS Business, Invoicing & Accounting Software Codecanyon 25039709
0.00 star(s) 0 ratings
Downloads
123
Updated
Aoxio - SaaS Multi-Business Service Booking Software [codericks] raz0r
Aoxio - SaaS Multi-Business Service Booking Software - Codecanyon 33026229
4.75 star(s) 4 ratings
Downloads
338
Updated
ArrowChat Business Edition - Live Chat raz0r
JQuery Live Chat Plugin For Websites
4.00 star(s) 1 ratings
Downloads
179
Updated
Top