Re: Word Association Game Community Center Geeks' Lounge by Dani JavaScript —-> react Re: How is Website Framework detected Programming Web Development by Dani … code for a webpage and seeing if you can find javascript tags, etc. that are used by the framework. For example… Re: Which programming language is best Ludo game development? Programming Game Development by kishanrg … for game development, including Ludo games, are C++, C#, Java, JavaScript, and Python. Ultimately, the "best" programming language for… Re: Which programming language is best Ludo game development? Programming Game Development by polles i would choose JavaScript How Build Html form ? Programming by Kirubel_2 …;/center> </div> <script type="text/javascript"> // Function to show and hide the popup function… Re: Improve HAVING BY performance Programming Databases by Biiim … after the page has loaded, I moved to AJAX & Javascript websites like 6 or 7 years ago - let the DOM… load and use javascript to put the data in after it has already rendered… Re: Improve HAVING BY performance Programming Databases by Dani … after the page has loaded, I moved to AJAX & Javascript websites like 6 or 7 years ago - let the DOM… load and use javascript to put the data in after it has already rendered… Re: Word Association Game Community Center Geeks' Lounge by Read a Book Babel -> JavaScript 🙌 Re: Improve HAVING BY performance Programming Databases by Dani … before the web browser can begin loading anything else (CSS, Javascript, images, etc.) and start rendering the page. CWV dictates that… How is Website Framework detected Programming Web Development by ndonetimok Hello guys, please can someone explain to me how i can know the framework of any website on the internet. I know how i can detect wordpress but other framework are hard for me. Please i need assistance on this. Re: How is Website Framework detected Programming Web Development by rproffitt 1. Read the source Luke. 2. Wappalyzer Chrome extension APIs and SDKs in a PHP project Programming Web Development by FarrisFahad I want to understand how I can add an SDK to my PHP projects to make APIs calls. I noticed that every software company have an SDK. I also noticed that most SDKs use Composer. I don't know what composer is and do I need to have it for every SDK? I am also using PHP procedural programming and I noticed that these SDKs use OOP. Can someone help… Re: APIs and SDKs in a PHP project Programming Web Development by rproffitt > A software development kit is a collection of software development tools in one installable package. As such your last question doesn't make sense. The SDK installs your software development tools and your code would be where the API is called but not a call to the SDK! Re: What is the function of Promiserace method in JavaScript ? Programming Web Development by IrwynCroke In JavaScript, the Promise.race method is used to create a new promise that is resolved or rejected when the first of the passed promises is executed. In other words, Promise.race returns a promise that will terminate as the fastest of the promises passed to it will terminate. Choosing the Right Framework: Comparing Pros and Cons Programming by riyajohnson70 … the selection process. React is a widely used, open-source JavaScript library with a large community of developers. One of React… Seeking Help for Creating a Circle Generator Tool Programming Game Development by jackwells … like this https://minecraftcirclegenerate.com/ created using HTML, CSS, and JavaScript. As a beginner, I'm seeking guidance on where to… How can I create a meme generator using js canvas? Programming Web Development by FarrisFahad I am trying to create a meme generator similar to imgflip.com I know javascript but not sure how to implement this. I want users to be able to move text around the canvas using mousemove event listener. But I am not sure if they are moving the text on the canvas or are they creating an overlay div then transform the dimension's to canvas? Re: Can someone please advice me for hoe can i prevent xss attacks ? Programming Web Development by webhostingworld Minimize the use of inline JavaScript within your HTML code. Instead, use external JavaScript files and scripts to separate content from functionality.Ensure that sensitive cookies have the HttpOnly and Secure flags set. Re: How to Code a Load More Button? Digital Media Digital Marketing Search Engine Strategies by Dani …is able to crawl each page. We use a Javascript library called [Infinite Scroll](https://infinite-scroll.com/) …*. Just as a random tidbit: Google does run javascript, so any javascript that executes at page load, Google understands. However…, Google does not have the ability to fire javascript events that are based on human activity, such as… Re: How to Code a Load More Button? Digital Media Digital Marketing Search Engine Strategies by MarkMarketer …a combination of HTML, CSS, and JavaScript. This guide will take you through creating…"Load More" button using JavaScript. Please note that this example assumes … CSS: #content .hidden { display: none; } JavaScript: // Assuming you have an array of data var data… Re: DomContentLoaded vs jQuery Ready fn Programming Web Development by jkon … load jQuery (in one minified file that contains also every JavaScript that this part of the app requires) I load it…() // the loader function { _fncl=true; //I load here the minified JavaScript file that contains jQuery }; window.addEventListener("DOMContentLoaded", _fnc… Re: what's the correct way of learning programming? Programming by Dani … works as a first language, but I would also recommend Javascript just because it is being used just about everywhere nowadays… Re: what's the correct way of learning programming? Programming by Andrew_104 Check out The Odin Project - free JavaScript course Re: Help with functions - basics Programming by jkon It seems that the issue has nothing to do with C++ or with functions. If you are new to programming why not try some tutorials in an easy accessible language (like JavaScript for example) and when you understand a few basics ( like null , functions , variables , loops , conditions ) move to a C++ tutorial for beginners ? Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Dani … your carousel is concerned, I see a link to the javascript file https://www.kupisi.mk/js/dz.carousel.js at… Re: SiteShow -- Create a slideshow of web pages Programming Web Development by PROSYS_1 wow.. its working fine... very useful for me to complete my task.. thanks Re: Choosing the Right Framework: Comparing Pros and Cons Programming by cored0mp "With so many options available, it can be challenging to determine the best fit for the project's needs. " Yes, that's why so many people rush through planning. I now think that the longer you go without writing your first line of code, the better. Re: Choosing the Right Framework: Comparing Pros and Cons Programming by trueframe Choosing the right frame requires weighing the pros and cons of different options. Advantage: Efficiency: Some frameworks are designed for optimal performance, which can increase the speed and efficiency of your development. Community support: Popular frameworks often have large developer communities that provide extensive resources, … Re: Seeking Help for Creating a Circle Generator Tool Programming Game Development by jackwells Here is a code i created <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Minecraft Circle Generator</title> <link rel=&… Re: How can I create a meme generator using js canvas? Programming Web Development by rproffitt As I read https://github.com/jacebrowning/memegen it looks more capable and complete than the other site you mentioned. To me I'd use this unless the goal is to write it from scratch.