I want to put two effects with javascript in an image. the First would make the image appear to appear once and from there it would be glowing frequently. Is it possible?
<div id="logo">
<a href="index.html">...
I have a form with 5 selects and I'm trying to check if any of these selects are of the same value.
$('form').submit(function (event) {
var $commitment = $("[name='commitment']").val();
var $proActivity = $("[name='proActivity']...
I have a code that inserts a textearea field as a choice of input radius. I would like to simplify this code making it use only JavaScript. It's possible? Follow below:
HTML
<p>2.3 - Você estuda? </p>
<input t...
Good night everyone.
I have an image of Brazil with its states:
HowdoI,ifIclickontheimageofthestateofSãoPaulo,fillinthisnameinatextfield.<inputtype="text" name="uf" id="uf" value="">
Thank you in advance for your help.
$(function() {
$("input[name*='pvn'").maskMoney({
thousands : '.',
decimal : ','
});
})
I do this to get the inputs with name='pvn' and apply a mask, but I would like to apply this mask to all money fields, so I...
I'm having trouble effecting a deletion with Laravel 5.3 . By submitting the ajax it simply is not returning anything to me.
My JavaScript looks like this:
$.ajaxSetup({ headers: { 'csrftoken' : '{{ csrf_token() }}' } });
func...
I am trying to do the following: the user types his / her zip, and then it is populated automatically, estado (select) cidade (select), rua (input) and bairro (input), when the user types his / her zip and for example...
I have a search in an input that returns the result in ajax, type autocomplete that is working (when I type 3 first digits it shows the results), but when I put this input inside a div "clone" (jquery) it does not search and returns no results ....
I have a variable with the value "14013" and I'm trying to insert a dot to get the following value "140.13" in my loop.
for (var i in teste) {
for (var j in (teste2[teste[i]])) {
valorFinal[j] = resultado1 + resultado2;
//valor...