10
votes
11answers
6k views
JavaScript foreach Vs for
Hi guys. How do you think, is there a big difference in foreach and for loops?
What kind of "for" do you prefer to use and why? Let's say we have an array of associative arrays:
var …
4
votes
Onclick function that mails page url to admin
This will create onClick handler for your link, and action will be done in case user will accept confirm message.
var onClickHandler = function() {
if (confirm("Are you sure?")) …
1
vote
jQuery: hijack a link and find its parent
First of all:
$(function() {
$(".pager A").live("click",
function() {
var $link = $(this);
$.get($(this).attr("href"),
function(r …
