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

December 21st, 2008 at 2:26 AM
I have a wee problem loading .gif files on Safari 3.2. The files load as code.
Also whe I load a page of HTML with tags in it, the text loads but the images are missing.
I’m sure it is just my inexperience with Ajax, not your wonderful script!
Thanks
~chris
December 21st, 2008 at 4:00 AM
well chris,
the purpose of ajaxify is to load html/xml data. not images. pointing to an image will not work.
Make sure that the url for images is correct in your html page. if the problem presents. post a test url for the page.
December 21st, 2008 at 4:02 AM
Max thanks for the help I figured out that I a had left out the ‘op’ but it still wasn’t functioning. Adding the space before img did the trick!
Thanks again!! Ajaxify is great.
December 22nd, 2008 at 9:25 PM
Very nice work there. Thanks for the effort you put into it.
There is one minor bug I noticed in the examples you put (not the actual Ajaxify code). In the registration form sample, for password verification, your text says “at least 5 characters” but you compare with “<=5″, so exactly 5 characters are legal by the text but fail the verification.
Getting the wrong error text through Ajaxify works great, though.
December 23rd, 2008 at 2:28 PM
Thank you yaron. I will fix it ASAP
December 23rd, 2008 at 4:02 PM
Hi, i just started using the ajaxify, and i think it’s a great thing, but i have a problem: chatset, my site is in russian (windows – 1251) and when a use link with options menu, all the loaded container is with ??? characters.
i’ve tried to set charset at all the pages, but without any success. (if i load the page separately it is shown with right encoding )
December 23rd, 2008 at 5:00 PM
Make sure that the loaded page match the main page charset
December 23rd, 2008 at 5:52 PM
Max,
thanks fot reply.
of course it matches, the charset, originally i’ve set the charset in a file, that is included in all mu pages (head.php), after that i tried to set it in all pages, with no luck
December 23rd, 2008 at 9:43 PM
Ok, try to send content charset as a header. for PHP, add this line before any output:
header(‘Content-Type: text/html; charset=windows-1251′);
December 24th, 2008 at 7:34 AM
Max,
thanks, it works!!!, strange: i’ve tried to put this line in all the files:
and it didn’t help……December 24th, 2008 at 7:36 AM
hmm, the tag code is’t showing anything….
this is the code:
December 24th, 2008 at 2:57 PM
What is worked and whats not?
I have repaired my blog. You can post your code now.
December 24th, 2008 at 3:01 PM
this is the code tha i had at the beginning, and it didn’t helped
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />the header code that tou gave is working, thanks
December 25th, 2008 at 9:20 AM
Thanks for this plugin, it looks to be very powerful. However, I am unable to get a very basic example working. I think the plugin would be truly exceptional if it had better documentation and full code examples. It seems many other people are using this with great success, perhaps they can help build this.
I have tried to be careful and not make a silly mistake. I am new to jQuery, so a small mistake is likely. Here is my very basic example that I cannot get working.
test.php
blog_test.php
When I click on the link in the container a new window opens rather than loading int he container. Any help is greatly appreciated.
Thanks again.
December 25th, 2008 at 10:23 AM
What do u mean by full documentation and full code. I have created an example for almost every option or method with html and js code included.
Openning in a new window means ajaxify is not running. your code seems ok. expect that you have included 2 history files.
See your browser console for errors and enable ajaxify debugger.
December 27th, 2008 at 7:20 PM
Got it! thanks. Was a problem with a small bit of legacy code messing it up.
December 27th, 2008 at 7:31 PM
I am trying to Ajaxify a wordpress blog and am running in to an error (below). I think it may have to do with the way wordpress dynamically loads it headers and the way ajaxify tries to modify the header it loads. What are your thoughts on pulling off this task and my current error.
error:
Warning: Cannot modify header information – headers already sent by (output started at /path/to/news/news2.php:7) in /path/to/news/wp-includes/pluggable.php on line 770
December 27th, 2008 at 8:56 PM
Where does this error appear? in the target after clicking a link?
I dont think that ajaxify has something to do with it. Its just your php tries to send a header after an output has been already recieved by the browser. headers must be sent before any output. Are you trying to make a plugin or something? post your code, I will try to hep you figure it out.
December 29th, 2008 at 2:56 PM
When using the demo animation fade in and out code on a formload in IE7 the font is misformed. Still readible though, but it doesn’t look nice at all. Another thing I noticed is that the text input fields have dots in every corner. I’ve tried to remove parts of my CSS, but no result. When I eventually remove the animation from the code it looked good again.
Chrome renders it perfectly, so it must an IE thing.
December 30th, 2008 at 11:38 PM
So far, ajaxify has been great, but I’m wondering about what is the best way to link between pages inside body text? I tried href=”#PageName” but it doesn’t work in Safari. Is there a better way that you would recommend?
Thanks!