-
The Odin's file, [DOM_manipulation_and_events.md](https://github.com/TheOdinProject/curriculum/blob/main/foundations/javascript_basics/DOM_manipulation_and_events.md) is updated. Please update the Kam…
-
Sometimes, components need to insert d3 and other markup that can't be produced by describing it in the template. In this case, we should allow templates to signal that the entire template, or at leas…
-
In angularJS, no DOM manipulation should be done in controllers like this :
```
$scope.state_bgcolor = "#f5f5f5";
$scope.state_bordercolor = "#e3e3e3";
```
Explanations here http://ng-learn…
-
### Describe your suggestion
In the "Assgnment" section, for the 2nd assignment,you can find the below text:
_"Note that some of the methods like getElementById are older and see less use today."_
…
-
These implementations use direct DOM modification in the end user code. This means specific DOM updating code is written tailored for these specific tests.
Those implementation are expected to perf…
-
**Description**: Build a movie search tool that allows users to search for information about movies (like title, release year, genre, and ratings) using an external API.
**Features:**
- Search b…
-
e.g. this won't work
let show (el:DomElement) = el.style.display = 'block'
-
React should be more efficient with that than jQuery or vanilla js
-
Currently, we are using `no-restricted-syntax` config blocks to preventively ban `querySelector` `querySeletorAll` and `getElementById`. One of the issues with this is the warning messages don't allow…
-
First of all, BrowserSync is awesome :)
Second, hopefully this feature is already feasible therefore it is a noob question.
### problem
I proxy an external URL and need to modify HTML requests on the…