Guess you should start by using Firebug to see if you have any
colliding css rules.
On 4 Okt, 00:48, neridaj wrote:
> I'm trying to add the lightbox plugin to a page and when the image is
> clicked the overlay and corresponding image are pushed to the bottom
> of the page wit the image below the
When you write:
$('a projTwo').click(function() {
You want to identify the correct a by its class name (projTwo).
So you would want to write it as:
$('a.projTwo').click(function() {
Notice the difference?
On 2 Okt, 15:00, Glen_H wrote:
> Hey guys, Im n
You have to use the live() event.
So instead of:
$("#clickme2").click(function(){
$("#mainview").load("page03.html");
});
You write:
$("#clickme2").live('click', function(){
$("#mainview").load("page03.html");
});
Functions will just work
>From the looks of it, why don't you use the $.ajax function and do
your stuff on success? Seems like an easier way to structure things.
Sometimes a variable used in a function that you want to use elsewhere
has to be stored somewhere as it won't be recognized globally. Check
http://docs.jquery.c
4 matches
Mail list logo