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 12 … 21 » Show All

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

    Hello everybody ^^
    First : great job !
    Second : sry for my bad english
    Third : i have try your ajaxify with the last version of jquery (1.3.1) and i have no results… But with the version included in package (1.2.6) the result is good.

    The problem that i have other .js that depends 1.3.1 and i want to use your ajaxify…

    Could you help me to have the other .js, the jquery 1.3.1 and ajaxify at the same moment ?

  2. I had no problem when I tested it with 1.3.1
    Could you please post your code that you are trying with.
    What is your browser? and what is the error generated by its debugger?

  3. Before /head

    <script src="js/jquery-1.3.1.min.js" type="text/javascript"></script>
    <script src="js/jquery.kwicks-1.5.1.js" type="text/javascript"></script>
    <script type="text/javascript" src="js/jquery.animated.innerfade.js"></script>
    <script type="text/javascript" src="js/jquery.ajaxify.js"></script>

    In my page :

    [...]
    <li id="kwick2"><a class="ajaxify" href="photos.html" target="#container" title="Photos" ><img src="./img/photos.png" alt="Photos" /></a></li>
    [...]
    <div id="maincontent">
    <script type="text/javascript">
    	$(document).ready( function() {  
    		$('.ajaxify').ajaxify( {
      			animateOut:{opacity:'0'},
            		animateOutSpeed:300,
            		animateIn:{opacity:'1'},
            		animateInSpeed:300
    		} )
    	} );
    </script>
    
    		<div id="container" class="post single" >
    		<h2>Bienvenue</h2>
    			<div class="entry">
    <p>Test de message</p>
    
    			</div>
    		</div>
    </div><!-- #maincontent -->
    [...]

    My browsers are Iceweasel 3 on Debian, Opera, Epiphany and IE6 on Wine.

    Apparently, there is no errors. The target photos.html is open in a new tab…

    Thx for helping. ;)

  4. Hi,this is my code:

    <!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 type="text/javascript" src="script/jquery-1.2.6.min.js"></script>
    <script type="text/javascript" src="script/ajaxify.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {$('.ajaxify').ajaxify(); });
    </script>
    </head>
    
    <body>
    <a class="ajaxify" href="example.php" target="#container">Click here</a>
    <div id="container"></div>
    </body>
    </html>

    But,if when i click on “Click here” the target “example.php” is open in a new tab. My browser is opera 3.0.5. Please, help me,thx.

  5. ~Rahman : try

    Instead of

    If your file in your server have the name jquery.ajaxify.js. ;)

  6. Hamtaro
    Ok, Does the opera nuns on wine too. If yes, I think there is a version for your OS or may be firefox. Give it a shot.
    The other thing that you could try is as follows:
    open ajaxify, the uncomppressed version. and go to line 59 and comment or delete the following

    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.'+jQuery.fn.jquery);
    		return false;
    }

    and include it to your page instead of the old one.
    on your page, add the following before calling ajaxify
    $.AjaxifyDebug = true;

    And tell me the results.

  7. Rhaaaaa pb in my code !!!

    ~Rahman : try
    <script type="text/javascript" src="script/jquery.ajaxify.js"></script>
    instead of
    <script type="text/javascript" src="script/ajaxify.js"></script>

  8. Rahman
    What the hell dude? we are on 2009. your version is 12 years old at least. There is no way to support your version at all. sorry :)

  9. MaX

    Hum… Try with new 1.3.1 or 1.2.6 jquery ?

    With the 1.3.1 and the changement in your code there is no msg… The target just open in a new tab…

    Here is my code :

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

    Is it ok ?

    Same results on Safari mobile… :(

  10. Rahman
    What the hell dude? we are on 2009. your version is 12 years old at least. There is no way to support your version at all. sorry :)

    Look at your code source, you have the same reference. ;)

  11. Hamtaro
    I meant 1.3.1
    Well, this is a hard case. since I dont to have the requirments tools to match your situation.
    Can you install FF on your OS?

    Look at your code source, you have the same reference.

    what do you mean?

  12. And BTW mobiles browsers doesn’t support ajax yet.

  13. Here my errors :

    Firebug a atteint sa limite d'enregistrements. %S entrées ne sont pas montrées.		Préférences	 
    missing ) in parenthetical
    [Break on this error] }; // end ajaxify fn\n
    jquery.ajaxify.js (ligne 95)
    $(".ajaxify").ajaxify is not a function
    [Break on this error] animateInSpeed:300

  14. Sorry. the steps before are missing the closing }
    delete this code in the steps provided before.

    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.'+jQuery.fn.jquery);
    		return false;
    	}

  15. Hum strange : all is good now…

    Thx for helping my pb is resolved

  16. Will its my fault, I have forgot that I have “return false;” in the code above.

  17. Hamtaro
    What did you mean by

    Look at your code source, you have the same reference.

  18. http://www.w3.org/1999/xhtml

    I believe that’s what you mean… ;)

  19. Hello mAx,
    I seem to have a problem in calling ajaxify from a loaded Ajaxify page.

    Suppose on my main index.html page i have ajaxify to load data into div name “Z” from different htmls.

    Now i am loading a html page into DIV Z throughy ajaxify but loaded html has again some links that need to be loaded in same DIV Z ..consider these are Pagination links (Page 1 2 3 etc )… How do i do it ?

  20. Live query. check it in the demo page.

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