How do I eliminate in%% of the value that is coming in the result variable. For example if I came 8:00 to expose only the hours without 8:00.
function buscarHorarios(dataConsu)
{
medico = $('#umedico').val();
$.ajax({
url: 'select2.p...
I'm trying to make a particular button, on click, get you back to the homepage.
As I'm mostly working with Javascript (I can not use j-query), I'm creating functions that delete the current elements and display the elements corresponding to t...
I have a menu that I will use on all pages, so I want to load the content:
I'm doing this:
<head>
<meta charset="utf-8">
<!-- This file has been downloaded from Bootsnipp.com. Enjoy! -->
<title> </titl...
Well, I'm having a little problem in getting the value entered in the input number of some cards I created ...
Basically, it is repeating the value on all inputs of all cards
Allinputsareinthesameclass,andeverytimeIclicktheaddbuttonortypeavalue...
I'm giving a load () on my div, but it always disables jquery commands as soon as it loads! Any solution ???
$(document).ready(function () {
$('#form_campo').on('submit', function() {
$.ajax({
url: 'matriz/salvacad.php',...
I have a NodeJs application and I am trying to insert some records in a MySql form, but when I run the code below I get the following message.
Code:
CadastroModel.prototype.cadastrarEstudio = function(estudio, callback) {
var sql = 'INS...
I'm having problems with TinyMCE on Laravel. I'll declare his js as explained. I already tested to see if it was really charging and it was positive. But when I declare:
tinymce.init({
selector:'#question'
});
Nothing happens. In the cod...
This is the put I am giving, (below will have the Json that is coming from the body):
put(endpoint: string, body: any) {
return new Promise((resolve, reject) => {
return this.http.put(this.url + '/' + endpoint, body)
.subscribe(...