Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'jquery'

2068832 - jquery.datatables.patch: javascript jquery
  1.         /*
  2.         * Function: fnAddDataEx
  3.         * Purpose:  Add new row(s) into the table with extended cell attributes
  4.         * Returns:  array int: array of indexes (aoData) which have been added (zero length on error)
  5.         * Inputs:   array:mData - the data to be added. The length must match
  6.         *               the original data from the DOM
  7.         *             or
  8.         *             array array:mData - 2D array of data to be added
  9.  
  10.  
1576340 - Bird 4 Rick's Twitter WP plugin: jquery wordpress twitter
  1. /*************************************************************
  2. If you have the wordpress twitter plugin
  3. http://rick.jinlabs.com/code/twitter/ (my favorite :) )
  4. this code:
  5. * turns the bulky text link to the tweet into a compact icon
  6.   (e.g. you can save http://tratmap.com/twitter-bird-icon.jpg)
  7. * sets all the links to target='_blank'
  8.  
  9.  
  10.  
1576332 - Facelift 4 Rick's Twitter WP plu: jquery wordpress twitter
  1. /*************************************************************
  2. If you have the wordpress twitter plugin
  3. http://rick.jinlabs.com/code/twitter/ (my favorite :) )
  4. this code sets all the links to target='_blank'
  5. and turns the bulky text link to the tweet into a compact icon
  6. (e.g. you can save http://tratmap.com/twitter-bird-icon.jpg)
  7. (requires jquery.js from http://jquery.com/).
  8.  
  9.  
  10.  
1576329 - Facelift 4 Rick's Twitter WP plu: jquery wordpress twitter
  1. /*************************************************************
  2. If you have the wordpress twitter plugin
  3. http://rick.jinlabs.com/code/twitter/ (my favorite :) )
  4. this code sets all the links to target='_blank'
  5. and turns the bulky text link to the tweet into a compact icon
  6. (e.g. you can save http://tratmap.com/twitter-bird-icon.jpg)
  7. (requires jquery.js from http://jquery.com/).
  8.  
  9.  
  10.  
1474004 - NiKo: jquery html forms
  1. $('input[type=password]').each(function(){
  2.   var value = $(this).attr('value');
  3.   var id = $(this).attr('id');
  4.   $(this).hide();
  5.   var newField = $(this).clone();
  6.   $(newField).attr('type', 'text');
  7.   $(newField).attr('id', id + '__display');
  8.   $(newField).insertAfter($(this));
  9.  
1412046 - Jquery drag and Sort: jquery drag sort
  1. Jquery drag and Sort
  2. http://docs.jquery.com/UI/API/1.7.1/Sortable#option-opacity
  3. http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/
  4. http://www.webresourcesdepot.com/dynamic-dragn-drop-with-jquery-and-php/
  5. http://www.wiseguysonly.com/2008/12/07/drag-and-drop-reordering-of-database-fields-sortables-with-jquery/ +php code
  6.  
  7. http://www.webappers.com/2008/04/01/fully-interactive-jquery-file-tree/
  8. http://www.jstree.com/
  9.  
1412045 - Jquery drag and Sort: jquery drag sort
  1. Jquery drag and Sort
  2. http://docs.jquery.com/UI/API/1.7.1/Sortable#option-opacity
  3. http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/
  4. http://www.webresourcesdepot.com/dynamic-dragn-drop-with-jquery-and-php/
  5. http://www.wiseguysonly.com/2008/12/07/drag-and-drop-reordering-of-database-fields-sortables-with-jquery/ +php code
  6.  
  7. http://www.webappers.com/2008/04/01/fully-interactive-jquery-file-tree/
  8. http://www.jstree.com/
  9.  
1288935 - JavaScript for vs each vs map: jquery
  1. /*
  2. * Performance test on "for", "$.each" and "$.map" (Firebug required)
  3. *
  4. * h3 ~ http://haineault.com
  5. *
  6. */
  7.  
  8. var range = new Array(1000);
  9.  
842376 - Unnamed: jquery slide
  1. <script src="jquery.js" type="text/javascript"></script>
  2.   <script type="text/javascript">
  3.   // in jquery, assuming your markup is as it is below:
  4.   $(function(){
  5.     $(".block h2").click(function(){
  6.       $(this).parents('.block').find('.content').slideToggle();
  7.  
842369 - Unnamed: jquery slide
  1. <script src="jquery.js" type="text/javascript"></script>
  2.   <script type="text/javascript">
  3.   // in jquery, assuming your markup
  4.   $(function(){
  5.     $(".block h2").click(function(){
  6.       $(this).parents('.block').find('.content').slideToggle();
  7.  
828735 - delineas: jquery
  1. $(document).ready(function(){
  2.         $('.media_action').click(function(){
  3.                 if($(this).attr('class').match('active')){
  4.                         $(this).removeClass('active');
  5.                         $('.upload_tags.active').hide('slow',function(){
  6.                                 $('.upload_tags.active').removeClass('active');
  7.                         });
  8.                 }
  9.  
828711 - delineas: jquery
  1. $(document).ready(function(){
  2.         $('.divcont_content_browse').click(function(){
  3.                 if($(this).attr('class').match('active')){
  4.                         $(this).removeClass('active');
  5.                         $('#divcont_content_types').hide('slow',function(){
  6.                                 $(this).addClass('hide');
  7.                                 $(this).removeClass('show');
  8.                                 }
  9.  
671971 - Something: jquery
  1. // lightning form submission handler
  2. $('#lightning').submit(function () {
  3.  
  4.         action_url = $(this).attr('action');
  5.  
  6.         // gather all submitted data
  7.         var inputs = [];
  8.         $(':input', this).each(function () {
  9.  
616432 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * With special thanks Dave Cardwell (who helped BIG TIME on getting this plugin to work).
  5. * Website: http://digitalspaghetti.tooum.net
  6. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  7. *
  8. * === Changelog ===
  9.  
  10.  
616303 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
616224 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
616136 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
615862 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
614561 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
614333 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
614295 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
614176 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
614103 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
614101 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
614088 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
612676 - digitalspaghetti: jquery google maps
  1. /*
  2. * Google Map Application (GMApp)
  3. * Author: Tane Piper (digitalspaghetti@gmail.com)
  4. * Website: http://digitalspaghetti.tooum.net
  5. * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
  6. *
  7. * === Changelog ===
  8. * Version 0.1
  9.  
  10.  
worth-right
fantasy-obligation