listworld.top
Open in
urlscan Pro
3.72.140.173
Public Scan
Submitted URL: http://listworld.top/
Effective URL: https://listworld.top/
Submission: On October 29 via manual from IN — Scanned from DE
Effective URL: https://listworld.top/
Submission: On October 29 via manual from IN — Scanned from DE
Form analysis
1 forms found in the DOM<form class="card p-2" id="form">
<div class="input-group">
<input type="text" id="input" class="form-control" placeholder="Test" value="Test">
<button type="submit" class="btn btn-primary">Suggest!</button>
</div>
</form>
Text Content
JAVASCRIPT BUSINESS NAME SUGGESTION TOOL LISTWORLD.TOP Tools for suggesting business names, organizations. Developed on pure javascript platform, with compact features and easy integration with any platform. Let's see how it works: Suggest! QUICK START 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>. <script src="./js/namesuggestion.js"></script> 3. INSERT HTML In body tag insert html: <div id="results" ></div> 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 = `<span>${item}</span>`; results_elem.appendChild(item_elem); }); }); © Javascript Business Name Suggestion Tool