User:Bequw/singleQuote.js

Hello, you have come here looking for the meaning of the word User:Bequw/singleQuote.js. In DICTIOUS you will not only get to know all the dictionary meanings for the word User:Bequw/singleQuote.js, but we will also tell you about its etymology, its characteristics and you will know how to say User:Bequw/singleQuote.js in singular and plural. Everything you need to know about the word User:Bequw/singleQuote.js you have here. The definition of the word User:Bequw/singleQuote.js will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofUser:Bequw/singleQuote.js, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
//Implements a User pref to switch from double quotes to single quotes
jQuery(function (){
	var dqSpans = ;
	if(document.querySelectorAll)
		dqSpans = document.querySelectorAll('.mention-gloss-double-quote');
	else { //IE <8
		var spans = document.getElementsByTagName('span');
		for (var i = 0; i < spans.length; i++){
			if(spans.getAttribute('class') == 'mention-gloss-double-quote')
				dqSpans.push(spans);
		}
	}
	if (dqSpans.length % 2 === 0){
		for(var i = 0; i < dqSpans.length; i += 2){
			dqSpans.innerHTML = '\'';
			dqSpans.innerHTML = '\'';
		}
	}
});