I have the following inputs:
1st Cost, where I inform the value of 6,23
2nd Margin, where I enter the value of 29,21
The JavaScript does the automatic calculation and returns me 8,05 in value
Well, that's all...
I have a site in HTML, in the index I put a modal to open as soon as the person enters, this modal is to collect the person's email, however every time the person updates the site the modal reappears .
I would like to know if you have something...
I have the following code:
<div class='premios text-center col-xs-12'>
<div class='div-img-premio'>
<img class='img-premio img-responsive' src='$imagem'>
</div>
<p class='nome-premio'&g...
I have a page that has several inputs, when I click on the button I open a modal with the result and inside modal I have another button to be clicked but I need to get the form fields and move to the other page. >
My detail button code looks l...
I have a form and typing the zip code shows a loading gif while I load the street, the neighborhood and etc.
The problem is that as the user goes down the form, the loading gif does not appear because it gets stuck at the top of the form givi...
I have an application in asp.net mvc 5 where the code below works locally (visual studio 2012), but does not work after posting to the server.
controllerAction = "/Controller/Action/"
controller = "/Controller/"
$('#approve-btn').click(functi...
I have the following script in which I use a jquery to validate a regular expression that filters the names of the files to upload:
$(document).on('change', "input[type='file']", function() {
var validaFile = $("input[type='file']").v...
Talk to people,
I need to get all the href and src values of the tags, link, a, img and script, for this I have developed the following code:
<html>
<script>
$(document).ready(function() {
function execute...
I have the following form:
@using (Ajax.BeginForm("minhaAction", "meuController", new AjaxOptions()
{
HttpMethod = "POST",
OnFailure = "alert('Erro!')",
OnSuccess = "TrabalharResultado"
}, new { id = "meuForm"...