Posts by Mr Minerin • 31 points
6 posts
-
2
votes1
answer16499
viewsQ: Error: Could not find or load main class solved
I am training for OBI and am picking up the exercises on your website and sending to run on it too, but my code is giving error: Error: Could not find or load main class solved "Error: Unable to…
javaasked Mr Minerin 31 -
0
votes1
answer168
viewsQ: Remove messages from validate() jquery
Good people, I am making a form and I am using firebase to store the bank, but firebase does not accept correctly the function "Submit" of the forms, I am using the validate() of jquery, only that…
-
1
votes1
answer68
viewsQ: Is not Function JQUERY
$(".add").click(function(event){ save($(this).parent().attr("id")); }); function save(docName){ var inputs = $('#' + docName + ' input'); var selects = $('#' + docName + ' select'); var obj;…
-
0
votes2
answers22
viewsQ: Create a one-size-fits-all box with scroll bar
I want to create a box that has a single size, but has a scrollbar on it to view the full content. I want to use this to detail something.
-
0
votes1
answer777
viewsQ: Organize object array according to one of its attributes
Well, it’s like the title said, I wonder if there’s any way I could arrange a array of objects of increasing shape according to the value of an attribute given to it. Example: var objetos = [] var…
-
0
votes0
answers47
viewsQ: Make modal appear on screen after creating
$('a[rel=modal]').click( function(){ var id = $(this).attr('href'); var a1 = []; for (var i = 0; i < id.length; i++) { a1[i] = (id[i+1]); } var a2 = a1.join(''); var idTime = parseInt(a2);…