I'd like to know how to get the value selected in the Yii2 Framework's RadioList:
<div class="row">
<div class="col-sm-2">
<?= $form->field($model, 'RADIO_LIST')->radioList($values, array('class' =>...
I'm having difficulty making settings for the component using jquery in vuejs2.
<div id="app">
<date-picker @update-date="updateDate" timepicker= "false" v-once></date-picker>
<p>{{ date }}</p>
&l...
I have the following code that returns my latitude and longitude.
Fiddle
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Geolocalização</title>
</head>
<body>...
I've created a small application that uses typeahead to do the searches. I have registered people with names with accentuation and to search them I need to write the absolute name (with accent). I need someone to be searched for, for example, th...
I have a dynamically created shopping cart, but the problem is that when I delete an item it even removes it, but if I try to add another item it picks up the one that was removed and adds it back to the shopping cart plus the item that I've add...
Hello,
I have a button with a click event, and when I click on it, I make an ajax request in a foreach.
I would like to open a loading mode to run while the requests are being made, but the modal only opens when they all finish and the event...
I would like help getting a value that is set within a forEach in my JSP, playing into Jquery and displaying it on a label on the same page.
This forEach retrieves a direct list from the database. I used hidden to...
Implemented% with%. It's all working missing just feeding the content.
The problem is that I can not centralize the elements.
I have already seen that moving to isotope was to center, but it does not work.
Stays like this:
HereisthecodeI...
How can I put an image inside an array, so that it also appears in auto-complete?
jquery
$(document).ready(function() {
$("#country").typeahead({
source: function(b, a) {
$.ajax({
url: "fetch.php",
method: "POST",
da...
I have an event in jQuery (version 1.5) as follows:
$('#refresh_abertos').click(function(){
// aqui o código irrelevante nesta pergunta
});
It turns out that my #refresh_abertos element is only loaded later via ajax ,...