CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Author : Paul

JSP – An Introduction

Java Server Pages (JSP) is a technology used to create dynamic content for web pages. How different it is from a normal HTML file? There is a lot of difference. Normal HTML files are served by the web servers whenever the user requests the file. Also, JSP pages are served by web servers. But there […]

jQuery – Writing a simple “Hello, World!” program

jQuery is a JavaScript library designed to simplify client-side scripting. jQuery enables the writing of cross-browser-compatible JavaScript code. Without it, it is tedious to write cross-browser-compatible code with JavaScript. In this article, we will look at our “Hello, World!” program using jQuery. We can download the jQuery library from jQuery.com. Instead of downloading it, we can […]

JavaScript – Access HTML DOM (Document Object Model)

DOM (Document Object Model) is a standard, allows to dynamically access the HTML documents, it’s styles, content and structure. It also allows dynamically update the content. JavaScript is a dynamically typed, object-based scripting language that runs in a host environment, usually a web-browser. But, it also used for server-side programming. JavaScript supports HTML DOM; so […]

Scroll to top