Friday, December 12th, 2008 | Author:

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.support
  • 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?.

  1. Open jquery.ajaxify.js with your preferred editor.
  2. Go to line 58. You will see var ver = jQuery.fn.jquery.split(‘.’);
  3. 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;
    }
  4. Comment it or delete it. its your choice.
Category: jQuery
You can follow any responses to this entry through the RSS 2.0 feed. Responses are currently closed, but you can trackback from your own site.

415 Responses to “Ajaxify – Support v2.0”

Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 … 21 » Show All

  1. 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

  2. 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.

  3. 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.

  4. 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. ;-)

  5. Thank you yaron. I will fix it ASAP :P

  6. 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 )

  7. Make sure that the loaded page match the main page charset

  8. 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 :(

  9. 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′);

  10. Max,
    thanks, it works!!!, strange: i’ve tried to put this line in all the files: and it didn’t help……

  11. hmm, the tag code is’t showing anything….
    this is the code:

  12. What is worked and whats not?

    I have repaired my blog. You can post your code now.

  13. 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

  14. 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

    <html>                                                                  
     <head>                                                                  
     <script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js"></script>
    <script type="text/javascript" src="../ajaxify/jquery.ajaxify.js" ></script>
    <script type="text/javascript" src="../ajaxify/jquery.history.fixed.js" ></script>
    <script type="text/javascript" src="../ajaxify/jquery.livequery.pack.js" ></script>
    <script type="text/javascript" src="../ajaxify/jquery.metadata.min.js" ></script>
    <script type="text/javascript" src="../ajaxify/jquery.history.js" ></script>
    <script type="text/javascript" > 
    $(function() {
    $(”.ajaxify”).ajaxify(); 
    })
    </script>                                                        
    </head>                                                                 
     <body> 
    
     <br /> <br /><p>Lorem ipsum </p>  
     
    <div id="container" style="min-height: 300px; width: 300px; background-color: red;">
    
    <ul>
    <li><a class="ajaxify" href="blog_test.php" target="#container">one</a></li>
    </ul>
    </div>                                                                                      
       
                                         
     </body>                                                                 
     </html>

    blog_test.php

    <html>
    	<head>
    	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    		<title></title>
    	</head>
    	<body><p>hello world</p>
    	</body>
    </html>

    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.

  15. 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.

  16. Got it! thanks. Was a problem with a small bit of legacy code messing it up.

  17. 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

  18. 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.

  19. 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.

  20. 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!

Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 … 21 » Show All