I created an HTML form that will send some parameters to a page, in that form it has a parameter set to hidden which is the token.
The token has several characters "%" in the middle of it and I noticed that on the page where the TOKEN INVALID...
I have the following method:
$scope.upload = function (files) {
if (files && files.length) {
for (var i = 0; i < files.length; i++) {
var file = files[i];
if (!file.$error) {
Uplo...
Currently I do a search using my code I only get the first page, to change the results I have to do this manually, how can I change the $ page variable with the click of a button.
My code:
<?php
function buscaUser($user)
{
$opts = [...
I have a table that I want to customize and leave it a full crud, with delete, insert, update and delete multiple records, 1- I wanted to see if I could leave this table compatible with jquery 2.2.0 or a more advanced jquery because it only acce...
I'm trying to use SockJS, and I put in the HEAD of my index <script src="//cdn.jsdelivr.net/sockjs/1/sockjs.min.js"></script> and javascript:
var wsUrl = 'ws://' + window.location.host
var ws = new WebSocket(wsUrl + '/aplic...
I have a dropdown list that takes its options from a mysql database. The value is stored in a variable with the Script Js. The button returns the information selected in option 3. After selecting the value it is saved in a variable...
Well I have a data model with the following information in vuejs
graficos: {
data : {
labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri'],
series: [
[5, 2, 4, 2, 0]
]
},
options : {...
I have a case that I can not solve, I'm developing a layout in HTML and CSS where I use flexbox centralizing content, well, on large screens everything works okay, but on small screen the div pops up and does not show the content that sho...
I'm using the template in Angular. I need to open a page within a modal, for this I used a code that was suggested by the template support:
<script type="text/javascript">
$('#conteudo2').on({
'show.uk.modal': function () {...