Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by dt65231

  1. D

    HTML & CSS Positioning of bootstrap child rows.

    https://jsfiddle.net/User65659/rh9wckbv/8/ How can your solution be applied? I try to apply it, but nothing happens. What is the point?
  2. D

    HTML & CSS What tools should I use for color matching?

    index.html <!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="./css/style.css"> <title>История лагеря</title>...
  3. D

    HTML & CSS What tools should I use for color matching?

    What tools should I use for color matching? I got a task: pdf file. I took the program with a "pipette". Got the color code. I paste it into HTML. Result: the colors in the task and the HTML page do not match. How to choose a color?
  4. D

    Node.JS How to correctly prescribe if there is a filter for the filter?

    There is a filter. The filter filters by the "full name" field. Everything works. Logic: - the user enters the criteria for the filter in <input id="fio"> - criteria fall into JS - data is received from the database - the HTML table is stored. How to set up a filter for...
  5. D

    HTML & CSS Positioning of bootstrap child rows.

    Is it possible to make the strings not compressed? Or is this normal behavior? Initial state. I have reduced the screen.
  6. D

    HTML & CSS Positioning of bootstrap child rows.

    Positioning of bootstrap child rows. Let's say there are three rows nested in the parent div: Row-1, Row-2, Row-3. Solution-1. Row-1 - fills the free space (Row-2, Row-3 - 50/50 ); Row-2 - fills the free space (Row-2, Row-3 - 50/50 ); Row-3 is pressed to the bottom point of the parent. The row...
  7. D

    Node.JS How to organize page navigation correctly?

    How to organize page navigation correctly? Problem: PageOneOne page: - go to PageOne - does not work (I get a link: “/pageone/pageone". Error 404); Index page: go to PageOne - it works; PageOne page: go to PageOne - it works; go to Index - it works; PageOneOne page: go to PageOne - does not...
  8. D

    Node.JS How to connect `Bootstrap` using `nmp`?

    How to connect `Bootstrap` using `nmp`? In a cdn project, Bootstrap is connected. Prosjects: - cdn - https://disk.yandex.by/d/fyuicfi8nli_pg - npm - https://disk.yandex.by/d/CGBJmRhX4vqm6A app.js const express = require("express") const path = require("path") const app = express()...
  9. D

    Node.JS How do I transfer a collection from ejs to a javascript function ?

    I understand your code. But I don't see how this will help my problem Although I may be wrong in my decision. My main goal is to perform in JS: - get a collection of `articles`; - get the collection item `article = articles`; - get the `article.content` property; - display the...
  10. D

    Node.JS How to filter the list without reloading the page?

    I'm just studying Node.JS . I don't really understand what you're talking about.. If it's not hard for you, could you give an example of the code... Or share links to examples.... Thanks.
  11. D

    Node.JS How do I transfer a collection from ejs to a javascript function ?

    How do I transfer a collection from ejs to a javascript function ? Тег `< a >` <a style="font-weight: bold;" href="#" onclick="setMessage3('<%=articles%>', '<%=article.id%>')"><%=article.title%></a> Тег < script > <script> function setMessage3(articles, id) { <!--...
  12. D

    Node.JS How to filter the list without reloading the page?

    I tried your solution. It works. Question: 1. How do I adapt your solution for my question? 2. How do I transfer the collection to `<script>`? To try how your solution works in my case, I added the code to \index.ejs. <!-- Begin. My changes --> <textarea id="filtertext" rows="1" cols="6"...
  13. D

    Node.JS How to filter the list without reloading the page?

    Could you show me the code? Or a link to the project?
  14. D

    Node.JS How to filter the list without reloading the page?

    How to filter the list without reloading the page? **Logic** - the user enters the filter criteria in the filter field; - result: the list is filtered without reloading the page; **Note** The criterion for the filter is the text. Filtering is carried out by the field: `title`. In...
  15. D

    Node.JS I can't go to another ejs page.

    I can't go to another ejs page. Index.ejs <h1>Index page</h1> <a href="/about" >About-1. Описание</a> </br> <a href="http://localhost:3000/About/" >About-2. Описание</a> In routes.js added. .get('/about', (req, res) => { res.render('about'); }) routes.js Full code const...
Back
Top Bottom