Friday, October 03rd, 2008 | Author: MaX
Any Comments, bugs , feature request about Ajaxify, please post it here.
Known issues:
- links that has this form <a href=”#”> doesn’t load. See solution
- live query and load hash enabled produce infinte loops.
Feature requests:
These features will be implemented in the next versions.
- Rebinding ajaxify automatically to the new created elements from the loaded page.
Category: jQuery

November 22nd, 2008 at 12:02 AM
No, that way.
$(document).ready(function() {
$(‘.ajax’).ajaxify({
loadHash: true,
target: “.conteudo-centro”
});
});
November 22nd, 2008 at 12:08 AM
Got it Johnny, but why do you want this feature anyway. is there an example of an application that uses this scenario ?
November 22nd, 2008 at 12:29 AM
She opens a new page in there .. =/
http://www.aliabrasil.net/fsdf9s4fr98ew4rtretregh8526ds1f9ds/testes/
November 22nd, 2008 at 12:34 AM
I clicked “Contato” and it seems works fine to me!!
November 22nd, 2008 at 1:03 AM
http://www.aliabrasil.net/fsdf9s4fr98ew4rtretregh8526ds1f9ds/testes/#paginas/principal/contato.php
Click “Antes de entrar em contato conosco, leia o FAQ.
”
Talvez sua dúvida já esteja solucionada lá
Down there…
November 22nd, 2008 at 1:45 AM
I am planning a project and wanted to know if this would work. I did a little playing around but couldn’t get it to go. I can break the content out into separate files to get the desired effect. I just wanted to know if it was possible (because the fact that I couldn’t make it work, doesn’t mean it shouldn’t work).
November 22nd, 2008 at 3:38 AM
HitoriX
There is an issue using live query with enabled loadHash.
You have two options:
recall the function in the new loaded page.
or use live query with loadHash = false
This issue will be fixed in the next release.
Johnny
tagToload is a filteration function actually. I mean if you have specified “#div” in tag to load. the function will extract this tag from the loaded data. you cant just actually request a tag from a server. so, I recomend you. break your contents. it would be much easier, time and bandwidth saver.
You can still do this from the server side. with playing in “params”.
November 22nd, 2008 at 7:07 PM
And as I do that?
Type…
So? ‘-’
If so … continues to give problems =/
November 26th, 2008 at 10:15 AM
following on from this comment
See this: http://max.jsrhost.com/2008/10/03/ajaxify-support/#comment-7
I did what the solution said and it worked… kinda. It works in that the links from the newly loaded page were ajaxified, but each time that page reloads, it seems to refresh itself an exponential amount of time.. first time loads perfectly, second time – loads the page 7 times, thrid time – loads the page 21 times …. and it gets worse for each load, subsequently slowing the whole site down….
Have you ever run into this problem?
Great script by the way.
November 26th, 2008 at 3:53 PM
Is loadHash option turned on ? if so, please read this http://max.jsrhost.com/2008/10/03/ajaxify-support/#comment-78
As you may know.I’m working on v2. loadHash has been enhanced much more than the current version. so I recommened everyone to wait that version.
Approximate release date is 15/12/08.
November 27th, 2008 at 12:31 AM
i’ve set loadhash to off, but it still isn’t working. I’m also not using Live Query if that’s any help.
November 27th, 2008 at 12:39 AM
Any test page?
November 27th, 2008 at 12:42 AM
yes, but it’s behind some security, if you email me I’ll send them across to you privately. thanks
November 27th, 2008 at 1:57 AM
OK, in case anyone else is having the same issue as I was, here is the solution..
1 – In the main ajaxified page you have the following setup
$(document).ready(function() {
$(“.ajaxify”).ajaxify({
loadHash: false});
});
and you use
<a href="someURL.html" rel="nofollow">Link</a>
to make you pages load into a div “main_content”
2 – the newly loaded page need to be setup with a new instance of the element call.
$(document).ready(function() {
$(“.ajaxify2″).ajaxify({
loadHash: false});
});
remembering to also change the class reference on all the links inside the loaded page.
<a href="someURL.html" rel="nofollow">Link</a>
Good luck and thanks again to MaX for helping me work through this problem.
November 27th, 2008 at 2:02 AM
You are welcome ivus.
November 29th, 2008 at 1:29 AM
Thank you Max =D
I will be hoping the new version.
And speaking of it … what she will again?
What’s new in it? I’m curious ^^
November 30th, 2008 at 12:52 AM
As everybody knows, it will support histroy, multi tagToload. Other features still unannounced (little secret). But I assure you, “she” will have a new beautiful dress
December 4th, 2008 at 3:03 PM
Just wanting to know if it is possible to add transition animation when ajaxify calls up a new page.
December 5th, 2008 at 9:16 AM
Hi Max,
Thanks for this great plugin!
How can I use this plugin to load images Asynchronously ?
I have the image like follows :
I have a list of 8 images and I want to load them asynchronously when the page loads.
Any help will be highly appreciated.
Thanks
December 5th, 2008 at 9:17 AM
Here is the format of the HTML :