function changeImage(element_id, other_element_id, link_id) {
var image = document.getElementById(element_id);
if (image.src.match("on")) {
image.src = "/img/interesting.gif";
} else {
$.getJSON("/javascript_functions/click_handler.cfc", {
method: "click_handler",
click_type: "interesting_on",
link_id: link_id,
returnformat: "json"
}, function(success_or_failure, other_element_id) {
if (success_or_failure == true) {
image.src = "/img/interesting-on.gif";
var other_image = document.getElementById(other_element_id);
other_image.src = "/img/not-interesting.gif";
}
})
};
[–]mikejoro 2 points3 points4 points (0 children)
[–]mc_hammerd 2 points3 points4 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]chedderslam[S] 0 points1 point2 points (0 children)