-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile-html5.html
More file actions
641 lines (621 loc) · 40.4 KB
/
mobile-html5.html
File metadata and controls
641 lines (621 loc) · 40.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Mobile and HTML 5</title>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="width=device-width" name="viewport"/>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"/>
<link href="css/uui-all.css" rel="stylesheet"/>
<link href="css/custom-styles.css" rel="stylesheet"/>
<link href="fonts/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="css/lib/components/awesome-bootstrap-checkbox.css" rel="stylesheet"/>
<link href="css/lib/components/datepicker3.css" rel="stylesheet"/>
<link href="css/lib/components/bootstrap-timepicker.css" rel="stylesheet"/>
<link href="css/lib/components/bootstrap-select.min.css" rel="stylesheet"/>
<link href="css/lib/components/jquery.mCustomScrollbar.css" rel="stylesheet"/>
<link href="jquery-ui/css/smoothness/jquery-ui-1.10.4.custom.min.css" rel="stylesheet"/>
<script src="js/lib/jquery-1.11.1.min.js"></script>
<script src="js/lib/components/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="js/lib/jquery.cookie.js"></script>
<script src="jquery-ui/jquery-ui-1.10.4.custom.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="js/uui-core.min.js" type="text/javascript"></script>
<script src="js/lib/components/bootstrap-datepicker.js"></script>
<script src="js/lib/components/bootstrap-timepicker.min.js"></script>
<script src="js/lib/components/bootstrap-select.min.js"></script>
<script src="js/utils.js" type="text/javascript"></script>
<!-- Include the plugin's CSS and JS: -->
<script src="bootstrap/js/bootstrap-multiselect.js" type="text/javascript"></script>
<link href="bootstrap/css/bootstrap-multiselect.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<header>
<div class="replace site-header">replace</div>
</header>
<div class="wrapper">
<div class="replace left-side-bar">replace</div>
<div class="uui-main-container page-inside">
<main>
<div class="pattern-top"></div>
<div class="main-content">
<div class="main-content-hg">
<div class="support-title"><i class="fa fa-comments-o"></i>HTML 5 Elements</div>
<div class="doc-space line">
<div class="html-left">
<h1 onclick="alert('JDI Title');" ui="jdi-title">JDI Testing platform</h1>
<p ui="jdi-text">Powerful Framework for UI Tests Automation. Suitable for any UI project:
Web(Html5, Angular, React...), Mobile(Android IOs), Desktop(Win app) etc.</p>
</div>
<div class="html-right">
Description
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<h4>Button</h4>
<input class="uui-button red" onclick="alert('Red button');" type="button"
value="Big Red Button-Input"/> <br><br>
<input class="uui-button grey" disabled onclick="alert('Grey button');" type="button"
value="Disabled Button-Input"/> <br>
<h4>Tag button</h4>
<button class="uui-button blue" id="blue-button" onclick="confirm('Blue button');">Big blue
button
</button>
<br><br>
<button class="uui-button dark-green" id="dbl-click-button"
ondblclick="alert('Double Click');">Double Click button
</button>
<br><br>
<button class="uui-button violet" id="right-click-button"
oncontextmenu="alert('Right Click');">Right Click button
</button>
<br><br>
<button class="uui-button grey" disabled id="disabled-button"
onclick="alert('Disabled button');">Disabled Button
</button>
<br><br>
<button class="uui-button dark-blue invisible" id="suspend-button"
onclick="confirm('Suspend button');">Suspend button
</button>
<br><br>
<button class="uui-button dark-green" id="ghost-button" onclick="prompt('Ghost button');">
Ghost button
</button>
</div>
<div class="html-right">
<h4>Button</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/tag_button.asp" target="_blank">https://www.w3schools.com/tags/tag_button.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button</a>
</p>
<p>click() - Click on link</p>
<p>getText() - Get link's text</p>
<p>getRef() - Get link's "ref" attribute</p>
<p>getUrl() - Get link's "ref" attribute as URL</p>
<p>getAlt() - Get link's "alt" attribute</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<a alt="Github JDI Link" href="https://github.com/jdi-testing" ui="github-link">Github
JDI</a>
</div>
<div class="html-right">
<h4>Link</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/tag_a.asp" target="_blank">https://www.w3schools.com/tags/tag_a.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a</a>
</p>
<p>click() - Click on link</p>
<p>getText() - Get link's text</p>
<p>ref() - Get link's "ref" attribute</p>
<p>url() - Get link's "ref" attribute as URL</p>
<p>alt() - Get link's "alt" attribute</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="name">Your name:</label>
<input id="name" placeholder="Input name" type="text"/>
<label for="disabled-name">Surname:</label>
<input disabled id="disabled-name" placeholder="Iovlev" type="text"/>
</div>
<div class="html-right">
<h4>Textfield</h4>
<p>Input with type "text</p>
<p>W3C: <a href="https://www.w3schools.com/html/html_form_input_types.asp" target="_blank">https://www.w3schools.com/html/html_form_input_types.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/text"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/text</a>
</p>
<p>sendKeys(value) - Input text in textfield in addition to tet that already at textfield.
You also can use Keyboard keys as value</p>
<p>clear() - Clear text in textfield</p>
<p>input(value) - Set textfield with value text. Clear previously entered text</p>
<p>setText(value) - Set text in textfield immediately. Much faster than regular input or
sendKeys. Save input time significantly for long text values</p>
<p>focus() - Just focus cursor to textfield</p>
<p>placeholder() - Returns textfiled's placeholder value</p>
<p>label() - Returns label element associated with textfield</p>
<p>getText() - Get textfield's text</p>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="text-area">Text example:</label>
<textarea cols="33" id="text-area" maxlength="200" minlength="10"
placeholder="Input huge text" required rows="3" wrap="hard">
Textarea with sizing and wrap attribute (try values of hard, soft, and off to see how it affects wrapping). The maximum number of characters is constrained to 200 by the maxlength attribute.
</textarea> <br>
<textarea disabled placeholder="Disabled area"></textarea>
</div>
<div class="html-right">
<h4>Textarea</h4>
<p>Multi-line text input</p>
<p>W3C: <a href="https://www.w3schools.com/tags/tag_textarea.asp" target="_blank">https://www.w3schools.com/tags/tag_textarea.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea</a>
</p>
<p>clear() - Clear text in textarea</p>
<p>input(value) - Set textarea with value text. Clear previously entered text</p>
<p>inputLines(value) - Clear textarea and Input several lines of text in textarea</p>
<p>addNewLine(value) - Add text in textarea from new line (without clearing
previous)</p>
<p>getLines() - Get lines of text in textarea</p>
<p>label() - Returns label element assosiated with textarea</p>
<p>focus() - Just focus cursor to textfield</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="avatar">Profile picture:</label>
<input accept="image/png, image/jpeg" id="avatar" type="file"/>
<input accept="image/png, image/jpeg" disabled type="file"/>
<a download="" href="/jdi-light/images/jdi-logo.jpg">Download JDI Logo</a>
</div>
<div class="html-right">
<h4>Input FileUpload</h4>
<p>Let the user choose one or more files from their device storage</p>
<p>W3C: <a href="https://www.w3schools.com/jsref/dom_obj_fileupload.asp"
target="_blank">https://www.w3schools.com/jsref/dom_obj_fileupload.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/file"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/file</a>
</p>
<p>setValueAction(value) - Clear and input value</p>
<p>focus() - Just focus cursor to uploader</p>
<p>clear() - Clear value in uploader</p>
<p>label() - Returns label element assosiated with uploader</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="jdi-logo">JDI Logo:</label>
<img alt="Jdi Logo 2" height="100" id="jdi-logo"
onclick="alert('JDI Logo');" src="/jdi-light/images/jdi-logo.jpg" width="101">
</div>
<div class="html-right">
<h4>Image</h4>
<p>Image in an HTML page</p>
<p>W3C: <a href="https://www.w3schools.com/tags/tag_img.asp" target="_blank">https://www.w3schools.com/tags/tag_img.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img</a>
</p>
<p>getAlt() - Get image's "alt" attribute</p>
<p>getSource() - Get image source</p>
<p>click() - Click on the element</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="dress-code">Dress code:</label>
<select id="dress-code">
<option value="fancy">Fancy</option>
<option selected value="casual">Casual</option>
<option disabled value="disabled">Disabled</option>
<option value="pirate">Pirate</option>
</select>
<select disabled id="disabled-dropdown">
<option value="fancy">Fancy</option>
<option selected value="casual">Disabled</option>
<option value="pirate">Pirate</option>
</select>
</div>
<div class="html-right">
<h4>Selector</h4>
<p>Drop-down list</p>
<p>W3C: <a href="https://www.w3schools.com/tags/tag_select.asp" target="_blank">https://www.w3schools.com/tags/tag_select.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select</a>
</p>
<p>select(value) - Select Element with name from list</p>
<p>getSelected() - Get name of the selected Element</p>
<p>getSelectedIndex() - Get index of the selected Element</p>
<p>isSelectedAction(value) - Verifies selected text with value</p>
<p>isHidden() - Check is Element hidden</p>
<p>waitDisplayed() - Waits while Element becomes visible</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="ages">Age status:</label>
<select id="ages" multiple size="4">
<option value="electro">Electro</option>
<option selected value="steam">Steam</option>
<option value="metalic">Metalic</option>
<option disabled value="dis">Disabled</option>
<option value="wood">Wood</option>
</select>
</div>
<div class="html-right">
<h4>Multiple selector</h4>
<p>List with multiple options can be selected at once</p>
<p>W3C: <a href="https://www.w3schools.com/tags/att_select_multiple.asp"
target="_blank">https://www.w3schools.com/tags/att_select_multiple.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select</a>
</p>
<p>clearAction() - Clear options</p>
<p>select(values) - Select multiple values</p>
<p>uncheck(values) - Uncheck only specified options</p>
<p>areSelected() - Get names of checked options</p>
<p>isHidden() - Check is Element hidden</p>
<p>waitSelected(values) - Wait while all options with values selected</p>
<p>areDeselected() - Get names of unchecked options</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="multi-dropdown">Multi dropdown:</label>
<select id="multi-dropdown" multiple="multiple">
<option value="electro">Electro</option>
<option selected value="steam">Steam</option>
<option value="metalic">Metalic</option>
<option disabled value="dis">Disabled</option>
<option value="wood">Wood</option>
</select>
</div>
<div class="html-right">
<h4>Multi dropdown</h4>
<p>List with multiple dropdown options</p>
<p>W3C: <a href="https://www.w3schools.com/tags/att_select_multiple.asp"
target="_blank">https://www.w3schools.com/tags/att_select_multiple.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select</a>
</p>
<p>expand() - Expand DropDown</p>
<p>close() - Close DropDown</p>
<p>getTextAction() - Get first selected option</p>
<p>select(values) - Select options with values from list</p>
<p>clear() - Deselect all options</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="ice-cream">Choose your lovely icecream</label>
<input id="ice-cream" list="ice-cream-flavors" placeholder="Ice cream"/>
<datalist id="ice-cream-flavors">
<option value="Chocolate">
<option value="Coconut">
<option value="Mint">
<option value="Strawberry">
<option value="Vanilla">
</datalist>
</div>
<div class="html-right">
<h4>Datalist</h4>
<p>List of pre-defined options for input</p>
<p>W3C: <a href="https://www.w3schools.com/tags/tag_datalist.asp" target="_blank">https://www.w3schools.com/tags/tag_datalist.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist</a>
</p>
<p>expand() - Expand DropDown</p>
<p>getValue() - Get value of Element</p>
<p>clearAction() - Clear value</p>
<p>input(value) - Input text in textfield</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<input checked id="accept-conditions" type="checkbox"/>
<label for="accept-conditions">Accept terms and conditions</label> <br>
</div>
<div class="html-right">
<h4>Checkbox</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_checkbox.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_checkbox.asp</a>
</p>
<p>MDN: <a
href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox</a>
</p>
<p>click() - Click on checkbox</p>
<p>check() - Set checkbox checked</p>
<p>uncheck() - Set checkbox unchecked</p>
<p>isChecked() - Verify is checkbox checked</p>
<p>getValue() - Get value of Element</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<input checked id="hot" name="checks-group" type="checkbox"/>
<label for="hot">Hot option</label> <br>
<input id="cold" name="checks-group" type="checkbox"/>
<label for="cold">Cold</label> <br>
<input id="rainy" name="checks-group" type="checkbox"/>
<label for="rainy">Rainy day</label> <br>
<input id="sunny-day" name="checks-group" type="checkbox"/>
<label for="sunny-day">Sunny</label> <br>
<input disabled id="disabled-ch" name="checks-group" type="checkbox"/>
<label for="disabled-ch">Disabled</label>
</div>
<div class="html-right">
<h4>Checklist</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_checkbox.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_checkbox.asp</a>
</p>
<p>MDN: <a
href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#Checking_boxes_by_default"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox</a>
</p>
<p>check(String... values) - Check only specified values. All other values make
unchecked</p>
<p>check(TEnum... values) - Same as above for values in Enum</p>
<p>check(int... values) - Same as above but for indexes</p>
<p>uncheck(int... indexes) - Uncheck only specified values. All other values make
unchecked</p>
<p>uncheck(TEnum... values) - Same as above for values in Enum</p>
<p>uncheck(int... values) - Same as above but for indexes</p>
<p>List checked() - List of checked values</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<input id="red" name="colors" type="radio"/>
<label for="red">Red</label> <br>
<input checked id="green" name="colors" type="radio"/>
<label for="green">Green</label> <br>
<input id="blue" name="colors" type="radio"/>
<label for="blue">Blue</label> <br>
<input disabled id="yellow" name="colors" type="radio"/>
<label for="yellow">Yellow</label>
</div>
<div class="html-right">
<h4>Radio</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_radio.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_radio.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/radio"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/radio</a>
</p>
<p>select(value) - Select Element with value from list</p>
<p>getSelected() - Get name of the selected Element</p>
<p>isSelectedAction(value) - Verify checked value</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<input id="color-picker" type="color" value="#3fd7a6"/>
<label for="color-picker">Select a color</label> <br>
<input disabled id="disabled-picker" type="color" value="#ffd7a6"/> Disabled
</div>
<div class="html-right">
<h4>Input type color</h4>
<p>Defines a color picker</p>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_color.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_color.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/color"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/color</a>
</p>
<p>click() - Click on input</p>
<p>setValue(value) - Set value to Element</p>
<p>getValue - Get value of Element</p>
<p>ok() - Click on ok button</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="volume">Volume</label>
<input disabled id="volume-value" type="text"/> <br>
<span>10</span>
<input class="range" id="volume"
list="volume-list" max="100" min="10" onchange="showVal(this.value)"
oninput="showVal(this.value)" step="5"
type="range" value="90"/>
<span>100</span>
<datalist id="volume-list">
<option value="0">
<option value="20">
<option value="40">
<option value="60">
<option value="80">
<option value="100">
</datalist>
<br> <br>
<input disabled type="range"/>
</div>
<div class="html-right">
<h4>Input type range</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_range.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_range.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/range"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/range</a>
</p>
<p>sendKeys(value) - Specify value to send</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="progress">File progress</label>
<progress id="progress" max="100" value="70"></progress>
</div>
<div class="html-right">
<h4>Progress</h4>
<p>Represents the progress of a task</p>
<p>W3C: <a href="https://www.w3schools.com/tags/tag_progress.asp" target="_blank">https://www.w3schools.com/tags/tag_progress.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress</a>
</p>
<p>getValue() - Get value of Element</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="birth-date">Birth date</label>
<input id="birth-date" max="2030-12-31" min="1970-01-01"
type="date" value="1985-06-18"/>
</div>
<div class="html-right">
<h4>Input type date</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_date.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_date.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/ru/docs/Web/HTML/Element/Input/date"
target="_blank">https://developer.mozilla.org/ru/docs/Web/HTML/Element/Input/date</a>
</p>
<p>setValue(value) - Set value to Element</p>
<p>getValue() - Get value from Element</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="month-date">Month of Holidays</label>
<input id="month-date" max="2020-12"
min="2015-03" type="month" value="2018-05"/>
</div>
<div class="html-right">
<h4>Input type month</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_month.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_month.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/month"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/month</a>
</p>
<p>setValue(value) - Set value to Element</p>
<p>getValue() - Get value from Element</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="party-time">Date/time:</label>
<input id="party-time" max="2018-06-14T00:00" min="2018-05-07T00:00"
type="datetime-local" value="2018-06-12T19:30"/>
</div>
<div class="html-right">
<h4>Input type datetime-local</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_datetime-local.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_datetime-local.asp</a>
</p>
<p>MDN: <a
href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/datetime-local"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/datetime-local</a>
</p>
<p>setValue(value) - Set value to Element</p>
<p>getValue() - Get value from Element</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="booking-time">Booking Time:</label>
<input id="booking-time" max="18:00" min="9:00"
type="time" value="11:00"/>
</div>
<div class="html-right">
<h4>Input type time</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_time.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_time.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time</a>
</p>
<p>setValue(value) - Set value to Element</p>
<p>getValue() - Get value from Element</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="autumn-week">Autumn</label>
<input id="autumn-week" max="2018-W48" min="2018-W35"
required type="week" value="2018-W40"/>
</div>
<div class="html-right">
<h4>Input type week</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_week.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_week.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/week"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/week</a>
</p>
<p>setValue(value) - Set value to Element</p>
<p>getValue() - Get value from Element</p>
</div>
</div>
<div class="doc-space line">
<div class="html-left">
<label for="height">Height (metres):</label>
<input id="height" max="2.5" min="0.3" placeholder="20 cm increments. Range [0.3,2.5]"
step="0.2"
type="number"/>
</div>
<div class="html-right">
<h4>Input type number</h4>
<p>W3C: <a href="https://www.w3schools.com/tags/att_input_type_number.asp"
target="_blank">https://www.w3schools.com/tags/att_input_type_number.asp</a>
</p>
<p>MDN: <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/number"
target="_blank">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/number</a>
</p>
<p>setValue(value) - Set value to Element</p>
<p>getValue() - Get value from Element</p>
</div>
</div>
<div class="doc-space line"/>
</div>
</div>
</div>
</main>
</div>
<!--<div class="replace right-side-bar">replace</div>-->
</div>
<footer>
<div class="replace footer">replace</div>
</footer>
<script>
setTimeout(function() {
$('.invisible')[0].classList.remove("invisible");
$('#ghost-button')[0].classList.add("invisible");
}, 3000);
</script>
<script>
const volumeSpan = $('#volume-value')[0];
volumeSpan.value = $('#volume')[0].value;
function showVal(val) {
volumeSpan.value = val;
}
</script>
<script type="text/javascript">
$('#multi-dropdown').multiselect();
</script>
<Script language="JavaScript">
UUI.Vertical_Menu.init({"open":true});
</script>
<script>
$('.selectpicker').selectpicker();
</script>
<script>
includeSideBar();
activateTopElement(5,2);
</script>
</body>
</html>