Good afternoon, I have the following piece of code:
function getData(){
var url = "http://teste.com";
var data = "";
$.get(url, function(response){
serverResponse = response;
for(i in response.content){...
I've been able to do the View More function, with a StackOverflow code here, but the texts come from the dynamic database, so how do I get this code to get every text?
Code in php:
< div class="box-body" id="texto">
<?php...
I'm trying to use the modal of Bootstrap , but I can not make the window open in modal form with the page style, instead it opens as a page with no style and using the whole frame of the browser.
Following page code:
@model MyApplic...
I'm trying to understand more about long polling to "manipulate" a site in real time, I've seen some videos and I'm thinking so far:
Let's say I have an old date that is in the sql and I echo it.
How will long polling know if the old dat...
Based on link I'm trying to do a POST via Ajax using Django.
Dai I created a project in GitHub link
#urls.py
url(r'^customer/add$', 'core.views.customer_add', name='customer_add'),
url(r'^customer/save$', 'core.views.customer_sa...
Reformulating the question .. I have a MySQL database, inside it contains a table named map, inside the map table I have the fields idmapa (auto_increment), lat (which stores the latitude of a map position), lng ( which stores the length of a ma...
I'm having an issue with Spring MVC and jQuery.
I have a jsp with a 'form' and I needed to do a test where when I click on a button, jquery clears the texts of some "input type = 'Text'".
I even managed to test, but every time I click the...
I'm trying to implement an autocomplete with ajax, where I search the database and show the options in the input, but I can not identify where I am wrong.
Follow the code:
<div class="row troca">
<div class="s...
I can not access my action through the ajax request:
<legend>Procedimento:</legend>
@Html.HiddenFor(p => p.CodigoProcedimento, new { id = "codProcedimento", name = "codProcedimento" })
@Html.HiddenFor(p => p.CodigoPe...