<script type="text/javascript">
$(document).ready(function(){
$(".company").hide();
$(".comp_expand").click(function () {
$(".company").slideToggle("slow");
});
$(".comp_expand").hover(function () {
$(this).addClass("comp_expand_hl");
}, function () {
$(this).removeClass ("comp_expand_hl");
});
$("#panel001").hide();
$("#tab001").click(function () {
$("#panel001").slideToggle("slow");
});
$("#panel002").hide();
$("#tab002").click(function () {
$("#panel002").slideToggle("slow");
});
});
</script>
Ajax call
Page 1 of 13 Replies - 1091 Views - Last Post: 06 December 2009 - 05:19 AM
#1
Ajax call
Posted 26 November 2009 - 03:44 AM
Hi, I have done this script myself. I am not sure how to impliment a Ajax call (whatever method) for each of the elements that will be displayed. This is for a very extensive file directory and it would be good if I could rather call data via ajax as it is requested rather than wasting bandwidth.
Replies To: Ajax call
#4
Re: Ajax call
Posted 06 December 2009 - 05:19 AM
In your code where you want the request to be sent should be a good place!
Page 1 of 1

New Topic/Question
Reply


MultiQuote


|