Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. $("#btnback1").click(function() {
  2. $('#slidediv0').toggle('slide', { direction: 'left' }, 500);
  3. $('#slidediv1').hide();
  4. });
  5.  
  6. $("#btnnext1").click(function() {
  7. if(submitsliderform(0)==true){
  8. var catid=$("#catid").val();
  9. $.ajax({url:"http://<?php echo $_SERVER['HTTP_HOST']; ?>/blogs/wp-content/themes/insideup_user/blog-slider/slider25022015-ub-ajax.php?cid="+catid,async:false,success:function(result){
  10. $('#frame2').show();
  11. $('#frame2').html(result);
  12. }});
  13. $('#slidediv1').hide();
  14. $('#frame1').hide();
  15.  
  16. $('#slidediv2').toggle('slide', { direction: 'right' }, 500);
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement