Top "Get" questions

GET is one of many request methods supported by the HTTP protocol.

Update div with jQuery ajax response html

I am trying to update a div with the content from an ajax html response. I beleive I have the …

jquery ajax asp-classic get replacewith
Using the GET parameter of a URL in JavaScript

If I am on a page such as http://somesite.com/somepage.php?param1=asdf In the JavaScript of that …

javascript url get
How to build query string with Javascript

Just wondering if there is anything built-in to Javascript that can take a Form and return the query parameters, eg: "…

javascript string forms get
How to get data out of a Node.js http get request

I'm trying to get my function to return the http get request, however, whatever I do it seems to get …

javascript node.js http get request
GetElementByID - Multiple IDs

doStuff(document.getElementById("myCircle1" "myCircle2" "myCircle3" "myCircle4")); This doesn't work, so do I need a comma or semi-colon to make …

javascript arrays get element document
How are POST and GET variables handled in Python?

In PHP you can just use $_POST for POST and $_GET for GET (Query string) variables. What's the equivalent in …

python post get
Python requests library how to pass Authorization header with single token

I have a request URI and a token. If I use: curl -s "<MY_URI>" -H "Authorization: TOK:&…

python get authorization token python-requests
When should I use GET or POST method? What's the difference between them?

What's the difference when using GET or POST method? Which one is more secure? What are (dis)advantages of each …

forms http post get http-method
Correct way to pass multiple values for same parameter name in GET request

I'm looking into what is the correct way to pass multiple values for the same parameter name in a GET …

http get
How to use HTTP.GET in AngularJS correctly? In specific, for an external API call?

I have the following code in the controller.js, var myApp = angular.module('myApp',[]); myApp.service('dataService', function($http) { delete $…

javascript angularjs http get cross-domain