$('li').dblclick(function() {
var $this = $(this);
$this.fadeOut(function() {
$this.remove();
})
});
$('li').dblclick(function() {
var $this = $(this);
$this.fadeOut(function() {
$this.remove();
})
});
Olá Uellington,
Normalmente usamos para fazer uma seleção e depois atribuímos a outra variável.
var $texto = document.querySelection.("h2").textContent;
var texto = $texto;
Assim sabemos que o $texto é a referencia para a seleção, e o "texto" é o próprio conteúdo. Parece meio confuso, né? Mas não é nada obrigatório. Você pode usar o $texto diretamente se preferir também.