[Solved] Better to have ajax inside or outside for-loop or for-loop at the server side? Javascript [closed]

In general, if you need to load a bunch of small data, its better to have one server endpoint that returns the all the data. It’s simpler for the client side and avoids the overhead of many xhrs. If you have 100 tags, do you really want to invoke 100 xhrs to get them all, … Read more

[Solved] Develop with server-side program languages (web apps) [closed]

It will largely depend on your current knowledge of programming. There are several languages that you will need to know that can cohesively work together to create a web based app. On the client side you will need to know HTML/CSS/Javascript. You will likely need to expand on that with current technologies like AJAX, jQuery, … Read more