Closed (outdated)
Project:
Views (for Drupal 7)
Version:
7.x-3.7
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
23 Apr 2013 at 14:34 UTC
Updated:
9 Oct 2017 at 09:29 UTC
Jump to comment: Most recent
Comments
Comment #1
jrcholtz commentedsubscribe i have the same problem, when I used Better exposed filters I use auto-submit and the hover comes back, but I don wan autosub!
Comment #2
TimeBandit commentedSame here, Views 6.x-3.0. Custom hide/show jquery code works before ajax update. In my case the view is in a block and so the exposed filters must be ajax.
Edit: i see now this isn't a drupal issue. JQuery has issues with events post-ajax, depending on the JQuery version. Maybe look into on(), delegate() [for older JQ] and live() [for even older JQ].
Comment #3
mtilton63 commentedThis might help. Note "ajaxStop". It reloads your functions after the ajax call.
Comment #4
chintan4u commentedThere is an event which will be useful for this problem .ajaxComplete()
Please take a look at http://api.jquery.com/ajaxComplete/
Try your luck with below code.
jQuery(document).ajaxComplete(function() {
Comment #5
mustanggb commented