Friday, October 03rd, 2008 | Author: MaX
Any Comments, bugs , feature request about Ajaxify, please post it here.
Known issues:
- links that has this form <a href=”#”> doesn’t load. See solution
- live query and load hash enabled produce infinte loops.
Feature requests:
These features will be implemented in the next versions.
- Rebinding ajaxify automatically to the new created elements from the loaded page.
Category: jQuery

October 31st, 2008 at 8:59 PM
sure bro..
just tell me what is your email..?
November 1st, 2008 at 1:50 PM
Ok. I have sent an email….
November 5th, 2008 at 12:52 AM
is there a way to load 2 div elements on a page…
im currently busy with a site.. normal nav stuff nothing spectacular.. sp was thinking. if i use ajaxify with tagToload: ‘#content’ part… then if the user doesnt have javascript it will fail poroperly and hes just gonna go about with page reloads… but the problem comes in..
also need to change another element on the page “navright” which is basicaly like a heading field.
with tagToload: ‘#content’ it will load all the #content contents to #content on the first page when you click the link… any way to get it to load another # tag into the same spot out side of ‘#content’?
the posibilities of this plugin are incredible
congrats on it. im green with jealousy hehehe
November 5th, 2008 at 12:54 AM
lol ok this is a spam post… i forgot to click the “notify me of followups” box… sorry guys.
and need to know when somone responds with a solution heheh
November 6th, 2008 at 11:08 AM
I used the ajaxify method. works fine in firefox but in IE, it keeps
giving me js error “Invalid character”.
The page is loaded but the js error is prompted everytime the page is
displayed.
What I did is this :
For example:
a.jsp is a listing page and in the file I have a link that will call
edit.jsp.
in a.jsp i added :
$(document).ready(function() {
$(‘.ajaxify’).ajaxify(); });
and called edit.jsp by using
Is this the correct way? Like I said, the page is displayed as
intended. The only setback is the js error in IE.
Thank you in advance.
November 6th, 2008 at 1:32 PM
Hi again
i found out the problem. nothing to do with the jquery/ajaxify thing.. my fault..since i use jsp include for the files, i failed to notice that i called the same script for calendar twice. remove one and now it works beautifully… thanks
November 6th, 2008 at 3:49 PM
Hi William,
Yes, it will fail. you have to handle this sitution from the server side.
Use “params” option to determine wether the user has requested the page from ajax or as normal http request.
I will write an article about this soon.
If you mean multiple tagToload. Sorry, it is not supported yet. you have to wait until version 2 comes out. or just edit it by your self.
November 6th, 2008 at 4:23 PM
heheh thanks for the response… dont think im ok enough with jquery stuffs to be messing around with editing your plugin
(time constraints so will take longer to do)
ive decided to move away from using the plugin with the site tho. thought it was just my IE that “freaked” out… ran it through a test box here at work similer results.. works fine clicking from page A to page B then to page A again… but soon after that IE just gets stuck and crashes… or as the test box did…. makes a clicking sound (the click a link sound) insesintly till a ctrl + alt + del stops it…
opera works fine. never the less… awesome plugin
November 6th, 2008 at 10:26 PM
There is no reported issue about IE. Could you provide me your test box so I can investigate whats wrong?
November 6th, 2008 at 10:55 PM
you have an IM or email? dont want to fill up this page hehehe
November 7th, 2008 at 9:25 PM
hi,
thanks for this great plugin. I have a quick question. Is there a way of combining this plugin with RSH or the jquery history plugin?
Just a thought.
November 7th, 2008 at 9:58 PM
well,
I think yes. but I haven’t tried it yet.
its already planned to integrate history plugin in ajaxify in version 2.0
November 19th, 2008 at 3:19 AM
Look at me here again ^^”
I have a new problem. The problem this time is
following:
I have a link called “contato”, and within that link
there is a link to the “FAQ”. To call the page using
ajax in the same element, I used the following code:
But the error. The same error that happened before … the
page opens in a new tab =/
But if I remove that part:
loadHash: true,Opens normal … what can I do you keep using
the “hash”, and can use the code I’m using? =/
November 19th, 2008 at 3:21 AM
I forgot the exemple page: http://www.aliabrasil.net/fsdf9s4fr98ew4rtretregh8526ds1f9ds/testes/
November 19th, 2008 at 3:43 PM
The function is called incorrectly. you have to call it like this:
$(“.ajax”).livequery(function() {
$(this).ajaxify({
loadHash: true,
target: “.conteudo-centro”
});
});
And you are using the live query. so you don’t have to wrap the function with $(document).ready anymore.
November 20th, 2008 at 1:01 AM
Huuuummm … I did what you said, but now when click on “Contato”, he is infinitely reloading =/
Look: http://www.aliabrasil.net/fsdf9s4fr98ew4rtretregh8526ds1f9ds/testes/
I tested this in Opera, Firefox, IE and Google Chrome ‘-’
November 21st, 2008 at 3:30 AM
Hey Max,
Nice plugin and good support. I am wondering if there’s a way to combine the tagTolad and loadHash, so you can load multiple sections from the same file while providing a bookmark for each.
Thoughts?
November 21st, 2008 at 4:44 AM
“HitoriX”
Try using $(document).ready() instead of live query and tell me the results.
“Johnny’
Thanks johnny. multi tags to load has been implemnted already in the next release while I’m still not sure how and why you wants to combine it with loadHash?
November 21st, 2008 at 8:04 PM
If I had this structure:
Page 1
Page 2
div A
div B
div C
Page 3
and I want to call a specific div within a page, say div B within page 2. I can do it using tagLoad. Now say I want to be able to send the link of just that instance (link to “page 2 div b” or “page 2 div c” and so on). I will need a way to combine the tagLoad and loadHash so it can be done for any combo. Is that possible?
November 21st, 2008 at 11:27 PM
That way?
The problem continues =/