Tagged Questions
The jquery-get tag has no wiki summary.
2
votes
5answers
54 views
jQuery - check for POST in the URL
Is there any way to check with jQuery for POST within the URL similar to the PHP way?
PHP version:
if(!empty($_GET)) { // do stuff }
Sorry. I mean GET not POST.
I'm looking to fetch the URL on ...
1
vote
2answers
307 views
Problem with assigning data to JQplot chart getting data dynamically using jquery
I'm trying to do the following: Get some data from the backend and bind it with a JQplot candlestick chart.
What i've accomplished:
The data is being generated in the backend
The data is being ...
0
votes
1answer
80 views
JQuery .get doesnt execute Javascript
I am using JQuery .get method to retrieve some content from a webpage (page 1) and show it in a div in the main page. The problem is the content retrieved contains some javascript calls. The content ...
0
votes
2answers
16 views
jQuery get and displaying html results
I have the following jQuery get:
$.get("rssread.cfm?number=10", function (d) {
$('#feedContent').append($(d).html());
});
The get works fine and what it returns is some html of unordered lists ...
0
votes
2answers
234 views
jQuery/AJAX - How to load multiple divs and page title?
I tried this code (it works but when we click 3-4 times, my browser frezzes, maybe due to huge variables):
var elements = [ "content", "menu" ];
$.get(
url,
function(data)
{
// ...
0
votes
1answer
31 views
How to get list of objects by using jQuery.get or post
I am using jQuery.get/post methods in my Struts2 application.
See the following code. This URL return "success" and "error". It will hit a method and return a string (the struts2). I have made JSPs ...
0
votes
1answer
46 views
jQuery append with `.load()`without using `.get()`
It appears that one (of many) differences between .load() and .get() is that the former can use an HTML fragment, while the latter requires that said HTML fragment be a fully valid XML structure.
I'm ...