Yes and no. You temporarily do swap it into the right partition, but then increment the pointers which redefines where the right partition is: you swap it with the first element of the right partition before incrementing both i and j. In essence what this does is move the entire right partition one step to the right, while putting the previously unknown element before it.
Consider this example:
l l l l r r r r r ? ? ? ?
^ ^
i j
Now if the first ? was an r element, you could simply increment j and be done with it. But suppose it was an l element, then you have this scenario: l l l l r r r r r l ? ? ?
^ ^
i j
Note that "the first element of the right partition" is equivalent to "the first element after the left partition". Does it now make more sense that swapping the first element of the right partition and the unknown element (v[i], v[j]) is the right thing to do? After our swap we have this: +- swap --+
v v
l l l l l r r r r r ? ? ?
^ ^
i j
So now incrementing i and j both fixes our invariant: l l l l l r r r r r ? ? ?
^ ^
i j
> And what about the element that was in the right partition, when do you check where that one belongs?That one still belongs in the right partition, which is why we increment both i and j.