Posts by Fatasy Razer • 68 points
7 posts
-
1
votes2
answers370
viewsA: Error "Show More" html button
because of the same id in the input .myCollapse label { display: inline-flex; } .myCollapse label p strong { display: block; } .myCollapse label p strong+strong, .hide { display:none; } .myCollapse…
-
0
votes3
answers1787
viewsA: How to validate empty html fields
That code checks all inputs inside the table, with the attribute required , if you have a input worthless he adds a background red and a placeholder = "This Field is mandatory !" and then returns…
-
1
votes1
answer448
viewsA: How to prepare the content of a JSON for download?
jQuery.ajax({ type: "POST", url: "seleciona-dados.php", data:{data: ids}, success: function(data){ data = "text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(data)); var a =…
-
0
votes1
answer106
viewsA: How do I pull elements from another page?
Imdb has a API and you can get the information of any title by her API: http://www.omdbapi.com/ Javascript function to get the information you can do this with PHP tbm function GetImdb(titulo) { var…
-
2
votes3
answers758
viewsA: How to add a number with a string
var mao1 = "goncalo1"; var mao2 = 1; var mao1Numero = mao1.replace(/[^0-9]/g,''); var mao3 = mao1.replace(/[0-9]/g,'') + (parseInt(mao1Numero) + mao2);
javascriptanswered Fatasy Razer 68 -
1
votes1
answer205
viewsA: Hide/Show function does not work in IE 8
Current jQuery not IE 8 Support Supported browsers Desktop Chrome: (Current - 1) and Current Edge: (Current - 1) and Current Firefox: (Current - 1) and Current Internet Explorer: 9+ Safari: (Current…
-
0
votes1
answer75
viewsQ: Adding a Materialdesigninxamltoolkit controller with C# in XAML
I’m using Materialdesigninxamltoolkit to design my program in WPF, I’m new in WPF and wanted to know how I can add the Card controller by C#, as I do with Button or any other native WPF controller…