I find myself doing 2 things quite often in JS, at the moment using jQuery:
The first is the populating of an HTML element, which might look like:
$.get('http://www.example.com/get_result.php', { id: 1 }, function (data) {
$('#elementId').html(data);
});
The second is populating a select element with a JSON result, such as:
$.getJSON('http://www.example.com/get_result.php', { id: 1 }, function(data) {
$.each(data, function(value, name) {
$('#selectField').append('<option value="' + value + '">' + name + '</option>');
}
)};
What I'm looking for is either a better what of doing either of these or an extension (either library or a chunk of code) to jQuery that will do these without having to recreate the code all the time. Or is there already something in jQuery that makes this faster?
Edit: As mentioned by Kevin Gorski, populating the HTML element could be done as:
$('#elementId').load('http://www.example.com/get_result.php', { id: 1 });
This is perfect. Although, if you wanted to do a POST, it wouldn't work. Then doing Collin Allen's method is better.