Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function() {
- $('ul.tabs li').css('cursor', 'pointer');
- $('ul.tabs.tabs1 li').click(function(){
- var thisClass = this.className.slice(0,2);
- $('div.t1').hide();
- $('div.t2').hide();
- $('div.t3').hide();
- $('div.t4').hide();
- $('div.' + thisClass).show('fast');
- $('ul.tabs.tabs1 li').removeClass('tab-current');
- $(this).addClass('tab-current');
- var data = thisClass;
- $.ajax({
- type:"GET",
- url:"handler.php?name="+data,
- data:data,
- success:function(html) {
- $('div.' + thisClass).html(html);
- }
- });
- return false;
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement