Posts by Isaac • 47 points
3 posts
-
-1
votes3
answers66
viewsQ: How do I create this Button in HTML?
I want to create this button: I’ve tried that: <html> <head> <style> button { background-color: #343A40; } span { background-color: #9A9DA0; width: 50px; display: block;…
-
0
votes1
answer2013
viewsQ: Sort HTML table using Javascript?
How can I sort the following table using Javascript? How can I do a function that chooses the column to be ordered ascending or descending? <table border="1">…
-
3
votes2
answers84
viewsQ: Convert string.match() result to string?
How can I convert the return method match() string? For example: var value:string = ">>>> Ola" var result:string = value.match(/\w+/g) The above example gives error in variable result.…