You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
443 B

  1. jQuery('form.plugin_move_form').each(function(){
  2. var $form = jQuery(this);
  3. $form.find('.click-page').click(function() {
  4. $form.find('input[name=dst]').val($form.find('.click-page code').text());
  5. $form.find('.select').hide();
  6. }).click();
  7. $form.find('.click-ns').click(function() {
  8. $form.find('input[name=dst]').val($form.find('.click-ns code').text());
  9. $form.find('.select').show();
  10. });
  11. });