Skip to main content

DOM manipulations in JavaScript


Interactive DOM manipulation

Experiment with DOM manipulation and see the code behind it.

1. Dynamic Text Update (textContent)

Output: Nothing yet
Code concept: let value = document.getElementById('userInput').value;
This retrieves the text typed by the user. We then update the output with: document.getElementById('output').textContent = value;

2. Style Manipulation

Code concept: element.style.color = 'red';
This directly modifies the CSS of an element. We toggle between red and blue dynamically.

3. Creating Elements (appendChild)

Container for new elements:
Code concept: let div = document.createElement('div'); creates a new div.
container.appendChild(div); adds it to the DOM.

4. Removing Elements (removeChild)

Code concept: container.removeChild(container.lastElementChild); removes the last element inside a container.

5. Class Manipulation (classList.toggle)

Code concept: element.classList.toggle('highlight');
This adds the class if it’s missing or removes it if it’s present, dynamically changing styles.

6. innerHTML Example

Original content here.
Code concept: element.innerHTML = '<strong>HTML</strong> content';
This allows inserting HTML directly into an element.

Try this Code

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Interactive DOM Playground</title>
  <style>
    body { font-family: Arial; padding: 20px; line-height: 1.6; background: #f0f0f0; }
    h2 { color: #333; }
    .box { margin-top: 10px; padding: 10px; border: 1px solid gray; background-color: #fff; }
    .highlight { background-color: yellow; }
    .example { font-style: italic; color: #555; margin-top: 5px; }
    button { margin-right: 5px; margin-top: 5px; padding: 5px 10px; cursor: pointer; }
    input { padding: 5px; margin-top: 5px; }
    .section { margin-bottom: 20px; }
    .demo-element { padding: 5px; margin-top: 3px; border: 1px dashed gray; background: #fafafa; }
  </style>
</head>
<body>

  <h2>Interactive DOM Playground</h2>
  <p>Experiment with different DOM manipulations in real-time!</p>

  <!-- Section 1: textContent -->
  <div class="section">
    <h3>1. Dynamic Text Update (textContent)</h3>
    <input type="text" id="userInput" placeholder="Type something..." oninput="updateOutput()">
    <div class="box">
      Output: <span id="output">Nothing yet</span>
      <div class="example">Typing updates this text instantly using <strong>textContent</strong>.</div>
    </div>
  </div>

  <!-- Section 2: Style manipulation -->
  <div class="section">
    <h3>2. Style Manipulation</h3>
    <button onclick="changeColor()">Change Output Color</button>
    <div class="example">Click to toggle output color between red and blue using <strong>style.color</strong>.</div>
  </div>

  <!-- Section 3: Create new elements -->
  <div class="section">
    <h3>3. Creating Elements (appendChild)</h3>
    <button onclick="addNewElement()">Add New Element</button>
    <div id="container" class="box">
      Container for new elements:
      <div class="example">New divs created appear here using <strong>appendChild</strong>.</div>
    </div>
  </div>

  <!-- Section 4: Remove elements -->
  <div class="section">
    <h3>4. Removing Elements (removeChild)</h3>
    <button onclick="removeLastElement()">Remove Last Element</button>
    <div class="example">Removes the last element inside the container using <strong>removeChild</strong>.</div>
  </div>

  <!-- Section 5: Class toggling -->
  <div class="section">
    <h3>5. Class Manipulation (classList.toggle)</h3>
    <button onclick="toggleHighlight()">Toggle Highlight</button>
    <div class="example">Adds or removes the <strong>highlight</strong> class dynamically.</div>
  </div>

  <!-- Section 6: innerHTML example -->
  <div class="section">
    <h3>6. innerHTML Example</h3>
    <button onclick="updateInnerHTML()">Update innerHTML</button>
    <div id="innerHTMLBox" class="box demo-element">Original content here.</div>
    <div class="example">Using <strong>innerHTML</strong> allows inserting HTML elements directly.</div>
  </div>

  <!-- JavaScript -->
  <script>
    // 1. Dynamic text update
    function updateOutput() {
      const value = document.getElementById("userInput").value;
      document.getElementById("output").textContent = value;
    }

    // 2. Change text color
    function changeColor() {
      const output = document.getElementById("output");
      output.style.color = output.style.color === "red" ? "blue" : "red";
    }

    // 3. Add new element
    function addNewElement() {
      const div = document.createElement("div");
      div.textContent = "I am a new element!";
      div.className = "demo-element";
      document.getElementById("container").appendChild(div);
    }

    // 4. Remove last element
    function removeLastElement() {
      const container = document.getElementById("container");
      if(container.lastElementChild && !container.lastElementChild.classList.contains("example")) {
        container.removeChild(container.lastElementChild);
      } else {
        alert("No more elements to remove!");
      }
    }

    // 5. Toggle highlight
    function toggleHighlight() {
      const container = document.getElementById("container");
      container.classList.toggle("highlight");
    }

    // 6. Update innerHTML
    function updateInnerHTML() {
      const box = document.getElementById("innerHTMLBox");
      box.innerHTML = "<strong>Updated Content!</strong> This <em>HTML</em> was added via innerHTML.";
    }
  </script>

</body>
</html>

People are good at skipping over material they already know!

View Related Topics to







Contact Us

Name

Email *

Message *

Popular Posts

BER vs SNR for M-ary QAM, M-ary PSK, QPSK, BPSK, ...(MATLAB Code + Simulator)

📘 Overview of BER and SNR 🧮 Online Simulator for BER calculation of m-ary QAM and m-ary PSK 🧮 MATLAB Code for BER calculation of M-ary QAM, M-ary PSK, QPSK, BPSK, ... 📚 Further Reading 📂 View Other Topics on M-ary QAM, M-ary PSK, QPSK ... 🧮 Online Simulator for Constellation Diagram of m-ary QAM 🧮 Online Simulator for Constellation Diagram of m-ary PSK 🧮 MATLAB Code for BER calculation of ASK, FSK, and PSK 🧮 MATLAB Code for BER calculation of Alamouti Scheme 🧮 Different approaches to calculate BER vs SNR What is Bit Error Rate (BER)? The abbreviation BER stands for Bit Error Rate, which indicates how many corrupted bits are received (after the demodulation process) compared to the total number of bits sent in a communication process. BER = (number of bits received in error) / (total number of tran...

BER performance of QPSK with BPSK, 4-QAM, 16-QAM, 64-QAM, 256-QAM, etc (MATLAB + Simulator)

📘 Overview 📚 QPSK vs BPSK and QAM: A Comparison of Modulation Schemes in Wireless Communication 📚 Real-World Example 🧮 MATLAB Code 📚 Further Reading   QPSK provides twice the data rate compared to BPSK. However, the bit error rate (BER) is approximately the same as BPSK at low SNR values when gray coding is used. On the other hand, QPSK exhibits similar spectral efficiency to 4-QAM and 16-QAM under low SNR conditions. In very noisy channels, QPSK can sometimes achieve better spectral efficiency than 4-QAM or 16-QAM. In practical wireless communication scenarios, QPSK is commonly used along with QAM techniques, especially where adaptive modulation is applied. Modulation Bits/Symbol Points in Constellation Usage Notes BPSK 1 2 Very robust, used in weak signals QPSK 2 4 Balanced speed & reliability 4-QAM ...

MATLAB code for BER vs SNR for M-QAM, M-PSK, QPSk, BPSK, ...(with Online Simulator)

🧮 MATLAB Code for BPSK, M-ary PSK, and M-ary QAM Together 🧮 MATLAB Code for M-ary QAM 🧮 MATLAB Code for M-ary PSK 📚 Further Reading MATLAB Script for BER vs. SNR for M-QAM, M-PSK, QPSK, BPSK % Written by Salim Wireless clc; clear; close all; num_symbols = 1e5; snr_db = -20:2:20; psk_orders = [2, 4, 8, 16, 32]; qam_orders = [4, 16, 64, 256]; ber_psk_results = zeros(length(psk_orders), length(snr_db)); ber_qam_results = zeros(length(qam_orders), length(snr_db)); for i = 1:length(psk_orders) psk_order = psk_orders(i); for j = 1:length(snr_db) data_symbols = randi([0, psk_order-1], 1, num_symbols); modulated_signal = pskmod(data_symbols, psk_order, pi/psk_order); received_signal = awgn(modulated_signal, snr_db(j), 'measured'); demodulated_symbols = pskdemod(received_signal, psk_order, pi/psk_order); ber_psk_results(i, j) = sum(data_symbols ~= demodulated_symbols) / num_symbols; end end for i...

Theoretical BER vs SNR for binary ASK, FSK, and PSK with MATLAB Code + Simulator

📘 Overview & Theory 🧮 MATLAB Codes 📚 Further Reading Theoretical BER vs SNR for Amplitude Shift Keying (ASK) The theoretical Bit Error Rate (BER) for binary ASK depends on how binary bits are mapped to signal amplitudes. For typical cases: If bits are mapped to 1 and -1, the BER is: BER = Q(√(2 × SNR)) If bits are mapped to 0 and 1, the BER becomes: BER = Q(√(SNR / 2)) Where: Q(x) is the Q-function: Q(x) = 0.5 × erfc(x / √2) SNR : Signal-to-Noise Ratio N₀ : Noise Power Spectral Density Understanding the Q-Function and BER for ASK Bit '0' transmits noise only Bit '1' transmits signal (1 + noise) Receiver decision threshold is 0.5 BER is given by: P b = Q(0.5 / σ) , where σ = √(N₀ / 2) Using SNR = (0.5)² / N₀, we get: BER = Q(√(SNR / 2)) Theoretical BER vs ...

Online Simulator for ASK, FSK, and PSK

Try our new Digital Signal Processing Simulator!   Start Simulator for binary ASK Modulation Message Bits (e.g. 1,0,1,0) Carrier Frequency (Hz) Sampling Frequency (Hz) Run Simulation Simulator for binary FSK Modulation Input Bits (e.g. 1,0,1,0) Freq for '1' (Hz) Freq for '0' (Hz) Sampling Rate (Hz) Visualize FSK Signal Simulator for BPSK Modulation ...

How Windowing Affects Your Periodogram

The windowed periodogram is a widely used technique for estimating the Power Spectral Density (PSD) of a signal. It enhances the classical periodogram by mitigating spectral leakage through the application of a windowing function. This technique is essential in signal processing for accurate frequency-domain analysis.   Power Spectral Density (PSD) The PSD characterizes how the power of a signal is distributed across different frequency components. For a discrete-time signal, the PSD is defined as the Fourier Transform of the signal’s autocorrelation function: S x (f) = FT{R x (Ï„)} Here, R x (Ï„)}is the autocorrelation function. FT : Fourier Transform   Classical Periodogram The periodogram is a non-parametric PSD estimation method based on the Discrete Fourier Transform (DFT): P x (f) = \(\frac{1}{N}\) X(f) 2 Here: X(f): DFT of the signal x(n) N: Signal length However, the classical periodogram suffers from spectral leakage due to abrupt truncation of the ...

MATLAB Code for QPSK Modulation and Demodulation

📘 Overview 🧮 MATLAB Codes 🧮 Theory 🧮 BER performance of QPSK with BPSK, 4-QAM, 16-QAM, 64-QAM, 256-QAM, etc 📚 Further Reading   Quadrature Phase Shift Keying (QPSK) is a digital modulation scheme that conveys two bits per symbol by changing the phase of the carrier signal. Each pair of bits is mapped to one of four possible phase shifts: 0°, 90°, 180°, or 270° 00  ===> 0 degree phase shift of carrier signal 01  ===> 90 degree 11  ===> 180 degree 10  ===> 270 degree   MATLAB Script clc; clear all; close all; clc; M = 4; data = randi([0 (M-1)], 1000, 1); Phase = 0; modData=pskmod(data,M,Phase); figure(1); scatterplot(modData); channelAWGN = 15; rxData2 = awgn(modData, channelAWGN); figure(2); scatterplot(rxData2); demodData = pskdemod(rxData2,M,Phase);   Result data 1 0 2 2 0 2 1 . . . modData -1.00000000000000 + 1.22464679914735e-16i -1.83697019872103e-16 - 1.000000000000...

MATLAB Code for ASK, FSK, and PSK (with Online Simulator)

📘 Overview & Theory 🧮 MATLAB Code for ASK 🧮 MATLAB Code for FSK 🧮 MATLAB Code for PSK 🧮 Simulator for binary ASK, FSK, and PSK Modulations 📚 Further Reading ASK, FSK & PSK HomePage MATLAB Code MATLAB Code for ASK Modulation and Demodulation % The code is written by SalimWireless.Com % Clear previous data and plots clc; clear all; close all; % Parameters Tb = 1; % Bit duration (s) fc = 10; % Carrier frequency (Hz) N_bits = 10; % Number of bits Fs = 100 * fc; % Sampling frequency (ensure at least 2*fc, more for better representation) Ts = 1/Fs; % Sampling interval samples_per_bit = Fs * Tb; % Number of samples per bit duration % Generate random binary data rng(10); % Set random seed for reproducibility binary_data = randi([0, 1], 1, N_bits); % Generate random binary data (0 or 1) % Initialize arrays for continuous signals t_overall = 0:Ts:(N_bits...