<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>jQuery Archiv - Homepage nach Preis - Webseite erstellen lassen</title>
	<atom:link href="https://homepage-nach-preis.de/wort/jquery/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>★ Responsive Webdesigner Homepage erstellen lassen, bereits ab 299 Euro professionelle Webseite. ✓ Google-Optimiert ✓ Mobil-Optimiert &#124; Webdesign &#38; Seo</description>
	<lastBuildDate>Wed, 22 Jun 2022 00:26:07 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://homepage-nach-preis.de/wp-content/uploads/2021/02/cropped-icon-150x150.png</url>
	<title>jQuery Archiv - Homepage nach Preis - Webseite erstellen lassen</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>WordPress 5.5 &#038; 5.6 jQuery Fehler-Lösungen</title>
		<link>https://homepage-nach-preis.de/2020/10/14/wordpress-5-5-5-6-jquery-fehler-loesungen/</link>
					<comments>https://homepage-nach-preis.de/2020/10/14/wordpress-5-5-5-6-jquery-fehler-loesungen/#respond</comments>
		
		<dc:creator><![CDATA[Homepage-nach-Preis]]></dc:creator>
		<pubDate>Wed, 14 Oct 2020 10:18:30 +0000</pubDate>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[5.5]]></category>
		<category><![CDATA[5.6]]></category>
		<category><![CDATA[Austauschen]]></category>
		<category><![CDATA[Beheben]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Fehler]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Lösung]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://homepage-nach-preis.de/?p=4854</guid>

					<description><![CDATA[<p>WordPress 5.5 funktioniert nicht mehr nach Update Viele User können nach dem WordPress Update zu Version 5.5 / 5.6 ihre Webseite nicht mehr nutzen. Das liegt an der jQuery Änderung zu einer neueren Version. Die alten Befehle werden somit nicht mehr übernommen und es erzeugt Fehler. Die meisten veralteten Befehle können aber sehr einfach geupdatet werden. Hierbei die wichtigsten Änderungen mit Fehlermeldungen: Fehlercodes mit Lösung JQMIGRATE: jQuery.fn.delegate() is deprecated JQMIGRATE: jQuery.fn.undelegate() is deprecated JQMIGRATE: jQuery.fn.bind() is deprecated JQMIGRATE: jQuery.fn.unbind() is deprecated Lösung: .bind () und .unbind () direkt in .on () bzw. .off () umbenennen. JQMIGRATE: &#8216;ready&#8217; event is deprecated Lösung: $( document ).on( "ready", fn ) mit der direkten Funktion $( fn ) austauschen. JQMIGRATE: jQuery.fn.unload() is deprecated JQMIGRATE: jQuery.fn.load() is deprecated Lösung: $().load(fn) ändern zu $().on("load", fn) und $().unload(fn) zu $().on("unload", fn). JQMIGRATE: jQuery.fn.error() is deprecated Lösung: $().error(fn) ändern zu $().on("error", fn). JQMIGRATE: jQXHR.success is deprecated and removed JQMIGRATE: jQXHR.error is deprecated and removed JQMIGRATE: jQXHR.complete is deprecated and removed Lösung: .success() ändern zu .done(), .error() ändern zu .fail(), und .complete() zu .always(). JQMIGRATE: deferred.pipe() is deprecated Lösung: Änderung von .pipe() zu .then() JQMIGRATE: jQuery.fn.andSelf() is deprecated and removed Lösung: .andSelf() mit .addBack() austauschen. JQMIGRATE: jQuery.fn.size() is deprecated....</p>
<p>Der Beitrag <a rel="nofollow" href="https://homepage-nach-preis.de/2020/10/14/wordpress-5-5-5-6-jquery-fehler-loesungen/">WordPress 5.5 &#038; 5.6 jQuery Fehler-Lösungen</a> erschien zuerst auf <a rel="nofollow" href="https://homepage-nach-preis.de">Homepage nach Preis - Webseite erstellen lassen</a>. Geschrieben von <a rel="nofollow" href="https://homepage-nach-preis.de/author/homepageadmin/">Homepage-nach-Preis</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2> WordPress 5.5 funktioniert nicht mehr nach Update </h2>
<p>Viele User können nach dem WordPress Update zu Version 5.5 / 5.6 ihre Webseite nicht mehr nutzen. Das liegt an der jQuery Änderung zu einer neueren Version. Die alten Befehle werden somit nicht mehr übernommen und es erzeugt Fehler. Die meisten veralteten Befehle können aber sehr einfach geupdatet werden. Hierbei die wichtigsten Änderungen mit Fehlermeldungen:</p>
<h3> Fehlercodes mit Lösung </h3>
<p><strong>JQMIGRATE: jQuery.fn.delegate() is deprecated<br />
JQMIGRATE: jQuery.fn.undelegate() is deprecated<br />
JQMIGRATE: jQuery.fn.bind() is deprecated<br />
JQMIGRATE: jQuery.fn.unbind() is deprecated</strong><br />
Lösung: <code>.bind ()</code> und <code>.unbind ()</code> direkt in <code>.on ()</code> bzw. <code>.off ()</code> umbenennen.</p>
<p><strong>JQMIGRATE: &#8216;ready&#8217; event is deprecated</strong><br />
Lösung: <code>$( document ).on( "ready", fn )</code> mit der direkten Funktion <code>$( fn )</code> austauschen.</p>
<p><strong>JQMIGRATE: jQuery.fn.unload() is deprecated<br />
JQMIGRATE: jQuery.fn.load() is deprecated</strong><br />
Lösung: <code>$().load(fn)</code> ändern  zu <code> $().on("load", fn)</code> und <code>$().unload(fn)</code> zu <code>$().on("unload", fn)</code>.</p>
<p><strong>JQMIGRATE: jQuery.fn.error() is deprecated</strong><br />
Lösung: <code>$().error(fn)</code> ändern zu <code>$().on("error", fn)</code>.</p>
<p><strong><br />
JQMIGRATE: jQXHR.success is deprecated and removed<br />
JQMIGRATE: jQXHR.error is deprecated and removed<br />
JQMIGRATE: jQXHR.complete is deprecated and removed</strong><br />
Lösung: <code>.success()</code> ändern zu <code>.done()</code>, <code>.error()</code> ändern zu <code>.fail()</code>, und <code>.complete()</code> zu <code>.always()</code>.</p>
<p><strong>JQMIGRATE: deferred.pipe() is deprecated</strong><br />
Lösung: Änderung von <code>.pipe()</code> zu <code>.then()</code></p>
<p><strong>JQMIGRATE: jQuery.fn.andSelf() is deprecated and removed</strong><br />
Lösung: <code>.andSelf()</code> mit <code>.addBack()</code> austauschen.</p>
<p><strong>JQMIGRATE: jQuery.fn.size() is deprecated and removed</strong><br />
Lösung: Austauschen von <code>.size()</code> mit <code>.length</code>.</p>
<p><strong>jQuery.fn.offset() requires a valid DOM element</strong><br />
Lösung: Die Offset-Informationen nicht mit einer ungültigen Eingabe(Input) festlegen.</p>
<p><strong>JQMIGRATE: &#8216;jQuery.easing.NAME&#8217; should use only one argument</strong><br />
Lösung:<br />
<code>jQuery.easing.easeInCubic = function ( p, t, b, c, d ) {<br />
	return c * ( t /= d ) * t * t + b;<br />
}</code><br />
ändern zu<br />
<code>jQuery.easing.easeInCubic = function ( p ) {<br />
	return Math.pow( p, 3 );<br />
}</code></p>
<p><strong>JQMIGRATE: jQuery.parseJSON is deprecated</strong><br />
Lösung: <code>jQuery.parseJSON</code> ändern zu <code>JSON.parse</code>.</p>
<p><strong>JQMIGRATE: jQuery.unique is deprecated</strong><br />
Lösung: <code>jQuery.unique</code> ändern zu <code>jQuery.uniqueSort</code>.</p>
<p><strong>JQMIGRATE: jQuery.expr.filters is deprecated</strong><br />
Lösung: <code>jQuery.expr.filters</code> ändern zu <code>jQuery.expr.pseudos</code>.</p>
<p><strong>JQMIGRATE: jQuery.fn.click() event shorthand is deprecated</strong><br />
Lösung: <code>.click(fn)</code> ändern zu <code>.on("click", fn)</code>. Und <code>.click()</code> zu <code>.trigger("click")</code></p>
<p><strong>JQMIGRATE: jQuery.fn.hover() is deprecated</strong><br />
Lösung: <code>.hover(fn1, fn2)</code>ändern zu <code>.on("mouseenter", fn1).on("mouseleave", fn2).</code></p>
<p><strong>jQuery.cssProps is deprecated</strong><br />
Lösung: Entfernung aller <code>jQuery.cssProps</code> im Code.</p>
<p><strong>jQuery.isArray is deprecated</strong><br />
Lösung: Austauschen von <code>jQuery.isArray</code> mit <code>Array.isArray</code>.</p>
<p><strong>jQuery.trim is deprecated; use String.prototype.trim</strong><br />
Lösung: Austauschen von <code>jQuery.trim( text )</code> mit <code>text.trim()</code> (Wenn der Text ein String ist)<br />
Ansonsten  mit <code> String.prototype.trim.call( text == null ? "" : text )</code>.</p>
<p>Der Beitrag <a rel="nofollow" href="https://homepage-nach-preis.de/2020/10/14/wordpress-5-5-5-6-jquery-fehler-loesungen/">WordPress 5.5 &#038; 5.6 jQuery Fehler-Lösungen</a> erschien zuerst auf <a rel="nofollow" href="https://homepage-nach-preis.de">Homepage nach Preis - Webseite erstellen lassen</a>. Geschrieben von <a rel="nofollow" href="https://homepage-nach-preis.de/author/homepageadmin/">Homepage-nach-Preis</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://homepage-nach-preis.de/2020/10/14/wordpress-5-5-5-6-jquery-fehler-loesungen/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress 5.5 mit jQuery Problem</title>
		<link>https://homepage-nach-preis.de/2020/10/11/wordpress-5-5-mit-jquery-problem/</link>
					<comments>https://homepage-nach-preis.de/2020/10/11/wordpress-5-5-mit-jquery-problem/#respond</comments>
		
		<dc:creator><![CDATA[Homepage-nach-Preis]]></dc:creator>
		<pubDate>Sun, 11 Oct 2020 18:09:51 +0000</pubDate>
				<category><![CDATA[Homepage]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[5.5]]></category>
		<category><![CDATA[5.6]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Lösung]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Probleme]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://homepage-nach-preis.de/?p=4844</guid>

					<description><![CDATA[<p>WordPress veröffentlicht Version 5.5 WordPress hat die neue Version 5.5 zum Download bereitgestellt, doch wie bereits im Vorfeld erwartet, erzeugt das Update einige Probleme bei Themen und Plugins. Dies liegt daran, dass das neue WordPress-Update die alte jQuery Version 1.4 nicht mehr nutzt. Viele Pluginhersteller und Themehersteller waren nicht auf das Update vorbereitet, obwohl es tatsächlich bereits vor vielen Monaten angekündigt wurde. Ein weiteres Problem ist, dass viele Kunden Ihre Webseite eigenständig updaten &#8211; um &#8220;unnötige&#8221; Kosten zu vermeiden. Bei diesem Update war dies ein fataler Fehler, denn 90% aller Webseiten funktionierten nach dem Update nur noch teilweise oder auch gar nicht mehr. Um das Problem zu lösen, müssen veraltete Codierungen auf die aktuelle jQuery Version geupdatet werden. Mehr Infos: WordPress Update 5.5 jQuery Sie möchten Ihren eigene WordPress Webseite? MEHR INFORMATIONEN</p>
<p>Der Beitrag <a rel="nofollow" href="https://homepage-nach-preis.de/2020/10/11/wordpress-5-5-mit-jquery-problem/">WordPress 5.5 mit jQuery Problem</a> erschien zuerst auf <a rel="nofollow" href="https://homepage-nach-preis.de">Homepage nach Preis - Webseite erstellen lassen</a>. Geschrieben von <a rel="nofollow" href="https://homepage-nach-preis.de/author/homepageadmin/">Homepage-nach-Preis</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>WordPress veröffentlicht Version 5.5</h2>
<p>WordPress hat die neue Version 5.5 zum Download bereitgestellt, doch wie bereits im Vorfeld erwartet, erzeugt das Update einige Probleme bei Themen und Plugins. Dies liegt daran, dass das neue WordPress-Update die alte jQuery Version 1.4 nicht mehr nutzt. Viele Pluginhersteller und Themehersteller waren nicht auf das Update vorbereitet, obwohl es tatsächlich bereits vor vielen Monaten angekündigt wurde. Ein weiteres Problem ist, dass viele Kunden Ihre Webseite eigenständig updaten &#8211; um &#8220;unnötige&#8221; Kosten zu vermeiden. Bei diesem Update war dies ein fataler Fehler, denn 90% aller Webseiten funktionierten nach dem Update nur noch teilweise oder auch gar nicht mehr. Um das Problem zu lösen, müssen veraltete Codierungen auf die aktuelle jQuery Version geupdatet werden.</p>
<p><strong> Mehr Infos:</strong><a href="https://make.wordpress.org/core/2020/06/29/updating-jquery-version-shipped-with-wordpress/" title="Wordpress jQuery Update" target="blank_" rel="noopener noreferrer"> WordPress Update 5.5 jQuery</a><br />
<br /></br></p>
<h5>Sie möchten Ihren eigene WordPress Webseite?  <a title="Internetseite Angebot" href="https://homepage-nach-preis.de/homepage-erstellen-lassen-kosten/"><span style="color: orange;">MEHR INFORMATIONEN</span></a></h5>
<p>Der Beitrag <a rel="nofollow" href="https://homepage-nach-preis.de/2020/10/11/wordpress-5-5-mit-jquery-problem/">WordPress 5.5 mit jQuery Problem</a> erschien zuerst auf <a rel="nofollow" href="https://homepage-nach-preis.de">Homepage nach Preis - Webseite erstellen lassen</a>. Geschrieben von <a rel="nofollow" href="https://homepage-nach-preis.de/author/homepageadmin/">Homepage-nach-Preis</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://homepage-nach-preis.de/2020/10/11/wordpress-5-5-mit-jquery-problem/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
