0
votes
jQuery .hide() in Safari ?
I think that there is a problem with "blur" event. Look here
Safari and Chrome don’t support thes …
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 …
