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 … 11 12 13 14 15 16 [17] 18 19 20 21 » Show All

  1. Hi,

    So i’ve run into a bit of a problem. I have a vertical sidebar that has the .ajaxify links. In IE when click a link the ajaxify part works great, but the target area doesn’t expand to accommodate the new content. It gets cut off at the fixed height of my sidebar. ‘Course it works fine in FF or Safari :?

    Thanks,
    ~bob

  2. onSuccess (callback) doesn’t know what “this” is.

  3. Hi

    I have a problem :cry: , i load a div with <a class=”ajaxify”…..
    but into that div i have again <a class=”ajaxify”…. but they dont work. Only tha first time when i load the page is working, after that tha ajax elements into the div that are loading dont work. Any help

    Thank you

  4. Ops my mistake i found it the solution :) – Live Query

  5. Dan,

    Can you elaborate on that a bit more please…

    Thanks,
    ~bob

  6. Yes I can, maybe I just don’t know how to use it…

    I call ajax with livequery..

    $(“.mydiv”).livequery(function(){

    $(this).ajaxify….

    send ajax here…

    and then I set up the callback functions

    onSuccess:function(){

    …call other functions here…

    The problem is when I try to use “$(this)” here it won’t work. I get a “undefined” error.

    For instance: $(this).hide(); It won’t work. It works outside the callback functions, but not inside. I am not sure why. I tried passing “$(this)” as a parameter but couldn’t figure it out how.

    }

    })

    On another but yet on the same subject, on your examples you use:

    onSuccess:function(o,data){

    do somethig here

    }

    Where does “o” and “data” values come from?

  7. Oh sorry Dan, I thought you were replying to my question. I’m afraid i can’t help you with yours. :oops:

    Somebody hook Dan up…

    ~bob

  8. Don’t you have an example how to use this for a WordPress theme, i tried to build it in my theme, but i can’t get it to work.

    Thanks
    Tony

  9. hi there, great plugin, especially the history funcs….

    but after all, i can’t get it working.

    i’m loading a menu with some a hrefs (class=”ajaxlink”) which i like to ajaxify. But when i’m clicking the link the requested page opens in a new browsertab.

    first, i’m including the jquery.ajaxify.js..
    then i’m including my own file, where my definitions are set:

    $(document).ready(function(){
      $('.ajaxlink').ajaxify({
      target: '#content',
      loading_img:'img/ajax_loader.gif',
      });
    });
    

    the html looks like:

    
    <a href="home.php" rel="nofollow"></A>
    <a href="settings.php" rel="nofollow"></A>
    <a href="tickets.php" rel="nofollow"></A>
    

    any help would be greatly appreciated.
    thx :)

  10. ehhhm, sry… html looks like this:

    <a href="home.php" rel="nofollow"></A>
    <a href="settings.php" rel="nofollow"></A>
    <a href="tickets.php" rel="nofollow"></A>

  11. what the heck?

    the html code is cut?

    it looks like:


  12. <li><A class="MI ajaxify" target="#content" href="home.php"><img src="icons/home.png" /></A></li>
    <li><A class="MI ajaxify" target="#content" href="settings.php"><img src="icons/exec.png" /></A></li>
    <li><A class="MI ajaxify" target="#content" href="tickets.php"><img src="icons/help1.png" /></A></li>

  13. “Stop ajaxify excuting based on onStart function return”
    Just solved this:
    replace line 238 “current.onStart(current);” with:

    var result = current.onStart(current);
    if(result === false)
    return false;

  14. Will ajaxify ever work with jquery 1.3.1?

    I get no problem with 1.2.6 but with 1.3.1 the page just opens in a new tab in all browsers Mac or Win.

    Don’t think just turning off an error message is the total solution

  15. Hi, I don’t think this is a bg in ajaxify itself, rather just the “Registeration form” demo. The email validation javascript rejects mails with a ‘+’ symbol in them to the left of the @ sign. If this is using a javascript library for validation then that library is buggy (+ signs in local parts are perfectly fine and often used as a form of filtering). If you are using a library it would be great if you could let me know which so I can report the bug there; otherwise, if it’s just a random bit of code to illustrate the example, I guess that’s fine. Also “registeration” should probably be “registration”.

  16. Oh, I’ve just read the rest of the code snippets below, it’s just a quick-and-dirty regex in the PHP for the sake of the example. Ok no prob (although if you threw a \+ in there for the LHS that would fix this particular issue :) )

  17. I can do a 2 forms on a page by using

    forms: ‘#actionform,#newactionform’,

    How can I get a different loading_target animation for each form when submitted?

  18. Hi,
    What is being passed before the params? E.g <strong>&_=1243117196357</strong>&ajax=true How do I remove it? It’s messing up server side code for me.

  19. Hi
    It will be better to provide XMLHttpRequest object from the underlying jQuery.Ajax handlers to ajaxify handlers (onStart…). For example it will be useful to make abort operation on it.

  20. Whenever I load a page that has .png files that have transparency, and I use the FadeOut/FadeIn transition on Ajaxify, the PNGs loose thier transparency and become solid.

    The only way I have found to fix it is to use the height transition instead of the fade. I would prefer the fade method… is there anyway to fix this issue?

Pages: « 1 … 11 12 13 14 15 16 [17] 18 19 20 21 » Show All