I need to convert some functions in PHP to JS, so I'll need to put all these functions inside a .js file.
I currently have the following in PHP:
$basicoUS_mensal=processaValor("url_aqui");
function processaValor($url) {
$result = file_...
$("#btn_confirmar").click(function () {
var form = new FormData(document.getElementById('formAlteraFoto'));
$.ajax({
type: 'POST',
url: '/Usuario/AlterarFoto',...
My system has a page with a table that shows each bank record with a button to open a modal.
Iwouldlikethisgraphtohaveachartthatcomparesthenumberofplannedactionswiththenumberofactionsperformedmonthbymonth.ButsinceIonlyhaveabuttonthatrepeatsa...
I'm developing a simple crud with ajax and jquery and I came across the following question ...
$('#btnDelete').unbid().click(function(){
$.ajax({
type: 'ajax',
method: 'post',
async: false,...
I have this function in AJAX:
function SalvarHorario() {
//NomeHorario
var nome = $("#Nome").val();
var token = $('input[name="__RequestVerificationToken"]').val();
var tokenadr = $('form[action="/Horario/Create"]...
Good afternoon, guys. Here is the code for my view, which is working correctly. It happens that I would like to make the process number (2nd <td> ), be clickable by calling another view. Is it possible?
View Code:
<head>...
I have this form and script on a page:
<section class="hide-section" id="produto_1">
<form class="form-validate" id="feedback_form">
<div class="campo">
<fieldset>
<h1>
&l...
I have a screen that lists the Trademarks registered in the system, as soon as the user opens this screen, the list of marks should happen. I already have AJAX done and it was working, however I wanted to get it from inside the marcas.php...
I'm doing an application in .Net C #, and I wanted to make an input and a button that would send the information to my controller by jquery/ajax , and I have no idea how to accomplish this, I need to pass the information by ajax...