Friday, December 12th, 2008 | Author: MaX
Any Comments, bugs , feature request about Ajaxify v2.0, please post it here.
For advanced paid support or special requests. Contact me through the contact form.
Known issues:
- Stop ajaxify excuting based on onStart function return.

- Fix false warning “warning: target “#Ajaxifytemp” couldn`t be found”
- Fix back button on first ajaxify call.
Feature requests:
- Loading Images via ajaxify.
- Encode non safe characters in url’s before sending the request.
- Change the page title based on the loaded content.
For advanced paid support or special requests. Contact me through the contact form.
__________________________________________________________________________
How to make ajaxify compatible with jquery v1.3.0 and higher?.
- Open jquery.ajaxify.js with your preferred editor.
- Go to line 58. You will see var ver = jQuery.fn.jquery.split(‘.’);
- Mark it, and go down until you reach line 62. So the full text will be:
var ver = jQuery.fn.jquery.split('.'); if(ver[0] < 1 || ver[1] < 2 || ver[2] < 6){ jQuery.ajaxifylog('Error: Your jQuery version is old. Version 1.2.6 or newer is required.'); return false; } - Comment it or delete it. its your choice.
Category: jQuery

January 23rd, 2009 at 11:30 PM
@foo
Your sintax is wrong:
&("ajaxify").ajaxify();It should be:
$(".ajaxify").ajaxify();January 23rd, 2009 at 11:38 PM
Cody:
No. Syntax is right. the & comes from copy and paste.
Ryan:
Thanks for your help.
But it just won’t load the content into the div.
It opens a new Window every time.
I have even copied your code, renamed my ajaxify to ajaxify.js.
Doesn’t work. Removed the css. Used different version of Ajaxify. Ran it from Drive and from Apache Server.
Nothing.
Just a little more and I’m going “The Shining” in here …
January 23rd, 2009 at 11:42 PM
Its the dot before “ajaxify”. just copy the code provided by cody.
Ryan
If you still having problems post your html code.
January 23rd, 2009 at 11:43 PM
Try to download the files again.
if you give me an email i will send you my files. You might have a corrupt file
January 23rd, 2009 at 11:46 PM
retype also the quotations as they converted by wordpress.
January 23rd, 2009 at 11:53 PM
January 23rd, 2009 at 11:53 PM
<div id="container"></>January 23rd, 2009 at 11:55 PM
Dude, it’s not id=”ajaxify”, it’s class=”ajaxify”
<a class="ajaxify" href="test.html" rel="nofollow">Setting up options</a>January 24th, 2009 at 12:00 AM
or you can use # instead of dot to keep ajaxify calling by id. note that your document must not have more than one element with the same id.
January 24th, 2009 at 12:10 AM
Wont work.
Works
What am i doing wrong, how do i get the effects to work?
January 24th, 2009 at 12:12 AM
Thanks so much for all your help.
I’ve now taken the source from Ryan’s last post, downloaded the files again …
Still doesn’t work.
Would you mind sending me your files for that example, Ryan?
I’d really appreciate it.
To:
nfoo(at)gmx.de
Thanks again for all your help!
Now I’m gonna try my axe on that door over … there … honey … honey … I’m home …
January 24th, 2009 at 12:16 AM
Ryan:
I think you’ll have to put the options inside the brakets.
like this:
Although I’m the guy that doesn’t even get the basic functions to run
January 24th, 2009 at 12:16 AM
Hey Ryan,
delete the last comma behind “animateInSpeed:300″!
January 24th, 2009 at 12:21 AM
Hey Ryan,
it’s me again… the code befor is wrong… here the correct one:
January 24th, 2009 at 1:01 AM
Thanks a lot to Ryan who send me his files.
I’ve got everything working now!
Cheers!
One last question:
Does Ajaxify not work with jquery 1.3.1 yet?
January 24th, 2009 at 1:56 AM
Thank you NetzKnecht
January 24th, 2009 at 4:35 AM
I’m glad that you have helped each other. keep on this, because I will be busy to hell next week.
January 24th, 2009 at 3:34 PM
I have just tested ajaxify with jquery 1.3.1 and its working fine. although it generates an error msg that says ajaxify is not compitable with your current jquery version when ajaxify debugger is enabled.
January 24th, 2009 at 6:05 PM
hi MaX, quick question… I want to load a page via ajaxify on page load…but then retain the ability to use hyperlinks to load other pages…when I set the event to false in the JS file, it appears all click events are disabled> is there a way to accomplish this?
thanks!!
n
January 24th, 2009 at 7:05 PM
You can see how I solved this in yahoo widget example. I have set event to false using meta data to a hidden
<a>to load the first tab.Or just make 2 ajaxify calls.