Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Changes
Page history
Update JQuery
authored
Apr 26, 2022
by
Joel H
Show whitespace changes
Inline
Side-by-side
Web/Javascript/JQuery.md
View page @
b0592a5b
...
...
@@ -39,6 +39,7 @@ $('div.test'); //will find every div with class 'test'
//In a DOM object, use text or html to change texts.
$
(
'
body
'
).
text
(
"
Hello world!
"
);
//equivalent of innerText
$
(
'
body
'
).
html
(
"
Hello world!
"
);
//equivalent of innerHTML
$
(
'
input
'
).
val
();
//to get the value of an input element
```
```
javascript
...
...
...
...