Questions tagged as 'javascript'

2
answers

Input transition effect jquery javascript

Hello, I wanted when I opened a page my image would come from the bottom up, and when I reached the top it would disappear, all in 10 seconds. How could I do that?     
asked by 23.07.2015 / 03:53
2
answers

How do I save the parameters of a function in a variable?

I want to execute this function coord(343,5,6,2,86528,875433, longitude, latitude, 'COORDENADAS'); But I wanted to save the parameters to run the function afterwards. How to save? I tried var x = 343,5,6,2,86528,875433, longitude...
asked by 27.07.2015 / 15:55
1
answer

JavaScript with ajax, function return. Because it does not work?

I made a JavaScript code to enable some buttons and inputs in a FORM, according to the user's permission, stored in a SESSION. It had done so: function showEditButtons() { if ( verUserPermissions(8) === true ) { btnConfirma.styl...
asked by 31.08.2015 / 17:07
2
answers

How to make Jquery datepicker accept only months and year?

How can I convert my jQuery datepicker to only accept months and years?     
asked by 12.09.2015 / 23:29
4
answers

Doubt about each () in Jquery

Because the code below only returns me the first "104 104" and not "104 106" $(function(){ $('#sortable li').each(function(){ console.log($('#sortable li').attr('id')); }); }); <script src="https://ajax.googleapis.com/aja...
asked by 24.10.2015 / 20:07
2
answers

How to solve this error correctly?

Error: [$injector:unpr] http://errors.angularjs.org/1.4.5/$injector/unpr?p0=%24scopeProvider%20%3C-%20%24scope%20%3C-%20LogUserService at Error (native) at http://localhost:8080/web/resources/js/angular/angular.min.js:6:416 at http://localhost:80...
asked by 14.10.2015 / 16:43
3
answers

Button and span logic from CSS

I have a button and a span from the following code: <div id="onestepcheckout-place-order"> <button type="button" class="button btn-proceed-checkout btn-checkout" title="<?php echo $this->__('Place Order Now')...
asked by 07.11.2017 / 20:42
1
answer

Change the visibility of a select

I have this form, where depending on what the person choose will appear another select for her to select, however that way I did, it is not appearing. Does anyone know if this does not work for select? because I have one to change the visibility...
asked by 20.11.2017 / 15:17
4
answers

How to put a gif before displaying the page of the site

I would like to place a loading gif on my site. When I access the page before opening the site, I would first open the gif and stay for 1.5 seconds or so. Is this possible? Note: I want something more or less like this link     
asked by 26.05.2015 / 20:29
1
answer

Display div after a certain time, with setTimeout

I'm trying to put setTimeOut in div in javascript, but I can not do it at all! My code: <script language="JavaScript" type="text/javascript"> if(document.all){} else document.captureEvents(Event.MOUSEMOVE);document.onmo...
asked by 07.06.2015 / 03:24