I've been using Pjax on my site for a couple of days.
It works great, but I'm having some difficulties deciding where to put the loading bar.

Right now it looks like this:

printscreen

It's a spinning thingy in the middle of the page that occurs when someone clicks on a link.

Anyone knows a better place to put it when I need to notify a user that the page is loading.
The current solution doesn't look okey, I think I need something else.

link|improve this question

I think theres nothing wrong with that, only if you put the loading element in the top of document layer (using z-index with additional background/overlay or Jquery wrapper/mask), that would be better. – toopay Aug 23 '11 at 13:27
This is not a programming question, please refer to the faq – Kokos Aug 23 '11 at 13:27
@Kokos, i think this kind of question is can specified as matters that are unique to the programming profession – toopay Aug 23 '11 at 13:29
1  
I would argue this has nothing to do with programming, it is design. – Kokos Aug 23 '11 at 13:30
@Kokos, have to agree with you, but there isn't a more active community regarding web development than SO is. Probably that leads to thse kind of questions in here.. – psycketom Aug 23 '11 at 13:33
show 1 more comment
feedback

closed as not constructive by Kyle Sevenoaks, Ken White, Robert Harvey Aug 23 '11 at 21:46

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

Well, you can always make it to follow the mouse! Always will be noticeable, because most users focus on the cursor (at least I think so). And it's kind of cool.

One more option would be to let the loading bar stay in the center, but dim/fade the background behind it, so people know that there's some "uncontrollable" action going on.

link|improve this answer
feedback

If this is an Ajax application then putting the loading icon on the center of the ajax form will make sense. If that is not that case, disable the background and show the loading icon in the center as it is right now. This will look good and is standard.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.