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. @foo
    Your sintax is wrong:
    &("ajaxify").ajaxify();
    It should be:
    $(".ajaxify").ajaxify();

  2. 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 … :shock:

  3. Its the dot before “ajaxify”. just copy the code provided by cody.

    Ryan
    If you still having problems post your html code.

  4. Try to download the files again.
    if you give me an email i will send you my files. You might have a corrupt file

  5. retype also the quotations as they converted by wordpress.

  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="../js/jquery-1.2.6.js" type="text/javascript"></script>
    <script src="../js/ajaxify.js" type="text/javascript"></script>
    </head>
    
    <body>
    
        <script type="text/javascript">
         $(document).ready(function() {  
       $('.ajaxify').ajaxify();
      
    		animateOut:{opacity:'0'},
            animateOutSpeed:300,
            animateIn:{opacity:'1'},
            animateInSpeed:300,
    		
        });
    </script>
    
    
     
          <a id="ajaxify" href="test.html" target="#container">Setting up options</a>
    
    </body>
    </html>

  7. <div id="container"></>

  8. Dude, it’s not id=”ajaxify”, it’s class=”ajaxify”
    <a class="ajaxify" href="test.html" rel="nofollow">Setting up options</a>

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

  10. Wont work.

    <script type="text/javascript">
         $(document).ready(function() {  
       $('.ajaxify').ajaxify();
      	animateOut:{opacity:'0'},
            animateOutSpeed:300,
            animateIn:{opacity:'1'},
            animateInSpeed:300,
        });
    </script>

    Works

    <script type="text/javascript">
         $(document).ready(function() {  
       $('.ajaxify').ajaxify();
      
        });
    </script>

    What am i doing wrong, how do i get the effects to work?

  11. 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 … :twisted:

  12. Ryan:

    I think you’ll have to put the options inside the brakets.

    like this:

    $(document).ready(function() {  
         $('.ajaxify').ajaxify(
            animateOut:{opacity:'0'},
            animateOutSpeed:300,
            animateIn:{opacity:'1'},
            animateInSpeed:300
            );
    });

    Although I’m the guy that doesn’t even get the basic functions to run :shock: :D

  13. Hey Ryan,

    delete the last comma behind “animateInSpeed:300″!

    <script type="text/javascript">
         $(document).ready(function() {  
       $('.ajaxify').ajaxify();
      	animateOut:{opacity:'0'},
            animateOutSpeed:300,
            animateIn:{opacity:'1'},
            animateInSpeed:300<strong>,</strong>
        });
    </script>

  14. Hey Ryan,

    it’s me again… the code befor is wrong… here the correct one:

    <script type="text/javascript">
    	$(document).ready( function() {  
    		$('.ajaxify').ajaxify( {
      			animateOut:{opacity:'0'},
            		animateOutSpeed:300,
            		animateIn:{opacity:'1'},
            		animateInSpeed:300
    		} )
    	} );
    </script>

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

  16. Thank you NetzKnecht

  17. I’m glad that you have helped each other. keep on this, because I will be busy to hell next week.

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

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

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

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