On this site we've implemented Jquery Address to remember and load ajax content correctly when using back/forward buttons in the browser.

The problem have arisen with links that has regular anchor points, that is:

<a href="product.php?prodid=5" name="product5" />a product link</a>

the purpose of this is of course to make brwoser scroll down to same position you were before clicking the link and clicking back (this is a product listing page for the record).

Is there a way to exclude (or not include) certain links that jquery adress catches?

link|improve this question
Post how you use jQuery Address (the line where you call it). – Blender Dec 21 '11 at 18:45
@Blender $.address.change(function(event) { switch(event.pathNames[0]) { case 'brand': { $('#center_column').empty(); $('#center_column').load('products.php?' + event.queryString); break; – danifer Dec 21 '11 at 18:46
feedback

1 Answer

You could just exclude all of the links with a name attribute:

// Use this selector when initializing jQuery Address.
$('a:not([name])').address()
link|improve this answer
Thanks for your quick reply Blender. My real problem was never this. I was mixing things up. Since I loaded data dynamically when pressed back scrollTop was reset. Now I save scrollTop before load and then set it back. – danifer Dec 21 '11 at 21:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.