delickate Posted May 6, 2012 Share Posted May 6, 2012 Hi guys, I'm trying put scroll color using AJAX. but failed. I've a div like this: <div class="scroll-pane" id="SLContainer"></div> I'm filling the dive using AJAX. On page load if i put color scroll code like below. it works fine. $(document).ready( function($) { $('.scroll-pane').jScrollPane(); } ); but when i use same function to fill div. and put same color scroll code in ajax function. it doesn't color the scroll. e.g function ajax() { ... ......... if (http_request.status == 200) { $('.scroll-pane').jScrollPane(); } .... .. } even i tried this: function ajax() { ... ......... if (http_request.status == 200) { $(document).ready( function($) { $('.scroll-pane').jScrollPane(); }); } .... .. } but no luck. can anyone guide me please??? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/262149-color-scroll-using-ajax/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.