As I have barely any experience with javascript could you tell me which bits I would input with my data?You must be registered for see links
<div class="Welcome">Welcome to HabGlobe, We are a new Habbo fansite and hope to become an official one!
<img src="images/Actions-file-close-icon.png" width="16" height="16" alt=""/></div>
$(".close").on("click",
function()
{
$('.welcome').hide("slow", function(){ $('.welcome').remove(); });
}
);
<img src="images/Actions-file-close-icon.png" width="16" height="16" class="close" alt=""/>
It doesn't work for some reason.Not sure, but try this:
Code:$(".close").on("click", function() { $('.welcome').hide("slow", function(){ $('.welcome').remove(); }); } );
And make the image this:
Code:<img src="images/Actions-file-close-icon.png" width="16" height="16" class="close" alt=""/>