Well I have Ripple's effect almost ready but I notice some bugs mainly to exclude the effect after applying but it does not affect the execution but the Browser Performance, raising the use of RAM and I need to reduce this cost and I am using js...
I need to change the inputs fields of a GridView , and as they are changed I must display the sum of these inputs fields in another input that is in the footer of the screen and the question is: how to get the value of...
Well suppose I have a progress bar in html and I have a script that clicks on a certain object the value of progress increases by +1, as I would for when that value reached 10 the maximum value of the bar increased to 100?
<progress id="pg"...
I'm developing a mobile application on HTML , JavaScript and CSS using phonegap . I need to adjust / fit the same page layout for both portrait mode and landscape mode. My question is as follows when I ide...
To search for data in a simple JSON , such as:
{
"chave1":"valor1",
"chave2":"valor2"
}
I use something like this:
$.getJSON(dados, function(json) {
$.each(json, function() {
$('#r').append("<p>"+this.chave1+"&l...
I'm trying to create an if so if one div is visible, another disappears (in a wordpress template):
jQuery(document).ready(function($){
if($('.classe1').is(':visible'){
$('.classe2').hide();
}
});
But you are not...
I made a table where each row has a select and a refresh button. The problem is that when I click on the refresh of a particular row I want to update only that row and therefore I need to receive by jQuery only the number that is in the select o...
I have this code and would like to update the value within div based on the position where it occupy I have already been able to get the value of it when the order is changed, but I can not get other properties of the element.
But just by completing the steps when scrolling the page, can anyone help?
$(document).ready(function() {
var i = 1;
$('.progress .circle').removeClass().addClass('circle');
$('.progress .bar').removeClass().addClass('bar');
setInter...
I have a form included inside a modal window. My question is how should a completed submission message appear within modal window after the form is submitted, this whole process would need to be done all within the same page, without updating th...