As of August 2024, International Journal "Notes on Intuitionistic Fuzzy Sets" is being indexed in Scopus.
Please check our Instructions to Authors and send your manuscripts to nifs.journal@gmail.com. Next issue: September/October 2024.

Open Call for Papers: 22nd International Workshop on Intuitionistic Fuzzy Sets and Generalized Nets • 18 October 2024 • Warsaw, Poland / online (hybrid mode).
Deadline for submissions: 1 October 2024.

MediaWiki:Common.js/CopyMe.js: Difference between revisions

From Ifigenia, the wiki for intuitionistic fuzzy sets and generalized nets
Jump to navigation Jump to search
(New page: →‎JavaScript function for automatic highlighting * Linked with class="copyme" *: $(function(){ $('span.copyme').each(function(){ $(this).after( $('<input class="copyme"/>') .val(...)
 
(No difference)

Latest revision as of 21:49, 3 June 2009

/* JavaScript function for automatic highlighting
* Linked with class="copyme"
* 
*/
$(function(){
	$('span.copyme').each(function(){
		$(this).after( $('<input class="copyme"/>')
			.val( $(this).text() )
			.click(function(){
				$(this).select();
			})
		).remove();
	});
});