User:Locke/common.js: Difference between revisions

Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
this isn't good enough, I need to keep track of some object with all the selections for a selector.
(works.)
(this isn't good enough, I need to keep track of some object with all the selections for a selector.)
Line 1: Line 1:
$('.tabset').each( function() {
  var target = $(this).attr('tab-target');
  var selector = $(this).attr('tab-selector');
  $(this).find('li a').each( function() {
    var selection = $(this).attr('tab-selection');
    $(this).on('click', function() {
      $('#'+target+' div').hide();
      var todo = 0;
      $('#'+target+' div[tab-content="'+todo+'"]').show();
    });
  });
});
function DataLoader( basepage, target ) {
function DataLoader( basepage, target ) {
     this.loadData = function( subpage ) {
     this.loadData = function( subpage ) {

Navigation menu