<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: javascript</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: javascript</description>
<language>en</language>
<pubDate>Tue, 24 Nov 2009 01:48:50 +0000</pubDate>

<item>
<title>crypted on "javascript in my widgets"</title>
<link>http://wordpress.org/support/topic/334621#post-1290709</link>
<pubDate>Mon, 23 Nov 2009 05:27:45 +0000</pubDate>
<dc:creator>crypted</dc:creator>
<guid isPermaLink="false">1290709@http://wordpress.org/support/</guid>
<description>&#60;p&#62;After the past few upgrades, the javascript stopped working.  &#60;/p&#62;
&#60;p&#62;Basically, the javascript is in widgets and they are Google Adsense and Google Analytics.  &#60;/p&#62;
&#60;p&#62;They are on my personal sites.&#60;/p&#62;
&#60;p&#62;How can I get these to work again?  Even if I have to apply some sort of hack?&#60;/p&#62;
&#60;p&#62;Please help.&#60;/p&#62;
&#60;p&#62;DG
&#60;/p&#62;</description>
</item>
<item>
<title>asexton on "Javascript in a page"</title>
<link>http://wordpress.org/support/topic/334493#post-1290324</link>
<pubDate>Sun, 22 Nov 2009 20:58:47 +0000</pubDate>
<dc:creator>asexton</dc:creator>
<guid isPermaLink="false">1290324@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi.  I am trying to get a marquee of images with links inserted into my page.  I tried several html codes and they weren't &#34;continuous&#34;.  I was able to get a javascript code that I think will work.  I created a .js file with that code.  I have a headspace plugin so where it says javascript I added what I thought I was supposed to.  I went to my page (http://giveaways4mommy.com/?page_id=45) and viewed the source and indeed saw my javascript file in the header.  Now I need to add it into my page.  I thought I would just type in the same thing that was in my header and it would bring it up.  I'm thinking that's not right.  What do I need to type into the actual page?  I've tried to read up on this and wondered about using exec-php but I have no idea how to do it.  Html I am starting to understand.  Javascript...not so much.
&#60;/p&#62;</description>
</item>
<item>
<title>matturmy on "Need Help Bad!"</title>
<link>http://wordpress.org/support/topic/334223#post-1290291</link>
<pubDate>Sun, 22 Nov 2009 20:09:56 +0000</pubDate>
<dc:creator>matturmy</dc:creator>
<guid isPermaLink="false">1290291@http://wordpress.org/support/</guid>
<description>&#60;p&#62;That did it! Thank you so much....so simple...but i never would have caught it.  songs and poems come natural to me...however, code...not so much...
&#60;/p&#62;</description>
</item>
<item>
<title>lawrence.homewood on "Javascript scrollbar problem"</title>
<link>http://wordpress.org/support/topic/334394#post-1289959</link>
<pubDate>Sun, 22 Nov 2009 13:16:41 +0000</pubDate>
<dc:creator>lawrence.homewood</dc:creator>
<guid isPermaLink="false">1289959@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hello.&#60;/p&#62;
&#60;p&#62;I'm struggling with a problem I've found trying to use a javascript scrollbar in a wordpress theme that I recently designed. It works fine in a HTML document, but as soon and I split the file into the Wordpress theme php documents, it doesn't work.&#60;/p&#62;
&#60;p&#62;I just want to say that I am in no way a developer! I am comfortably with HTML &#38;amp; CSS but php and javascript is very much new to me.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;html xmlns=&#38;quot;http://www.w3.org/1999/xhtml&#38;quot;&#38;gt;
&#38;lt;head&#38;gt;
&#38;lt;meta http-equiv=&#38;quot;Content-Type&#38;quot; content=&#38;quot;text/html; charset=ISO-8859-1&#38;quot; /&#38;gt;
&#38;lt;title&#38;gt;Portfolio &#38;amp;laquo;  Natasha Heasman&#38;lt;/title&#38;gt;
&#38;lt;link href=&#38;quot;http://localhost:8888/wordpress/wp-content/themes/tasha_pratice/style.css&#38;quot; rel=&#38;quot;stylesheet&#38;quot; type=&#38;quot;text/css&#38;quot; /&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;scripts/jquery-1.2.6.min.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
		&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;scripts/jquery.mousewheel.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
		&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;scripts/jScrollPane.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
		&#38;lt;style type=&#38;quot;text/css&#38;quot;&#38;gt;

			#pane3 {
				height: 400px;
			}

			/* IE SPECIFIC HACKED STYLES */
			* html .osX .jScrollPaneDragBottom {
				bottom: -1px;
			}
			/* /IE SPECIFIC HACKED STYLES */
		&#38;lt;/style&#38;gt;

		&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;

			$(function()
			{
				// this initialises the demo scollpanes on the page.
				$(&#38;#39;#pane3&#38;#39;).jScrollPane();
			});
			&#38;lt;/script&#38;gt;
&#38;lt;/head&#38;gt;
&#38;lt;body&#38;gt;
&#38;lt;div id=&#38;quot;wrapper&#38;quot;&#38;gt;

&#38;lt;!--/header --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Above is my code, I inserted the script tags into my header.php file, because I assumed that it would match my html layout.&#60;/p&#62;
&#60;p&#62;Any help would be much appreciated.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Lawrence.
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "Need Help Bad!"</title>
<link>http://wordpress.org/support/topic/334223#post-1289551</link>
<pubDate>Sat, 21 Nov 2009 22:25:05 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1289551@http://wordpress.org/support/</guid>
<description>&#60;p&#62;A closing `&#38;lt;/style&#38;gt; tag has been removed from your page header. Have a look in header.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;!-- HEADER TEXT FADE CSS START --&#38;gt;
&#38;lt;style type=&#38;quot;text/css&#38;quot; media=&#38;quot;screen&#38;quot;&#38;gt;
#news {margin: 0 0 0 10px;}
.newslink {
color: #FFFFFF;
width: 740px;
margin-top: 160px;
margin-left: 20px;
font-family:Arial, &#38;quot;New Times Roman&#38;quot;;
font-size: 16px;
font-weight: normal;
}
img.nothumb{border:0;}
.vnewsticker,a.vnewsticker{font-family:verdana,arial,sans-serif;font-size:11px;color:#FFFFFF;text-decoration:none;font-weight:normal}a.vnewsticker:hover{font-family:verdana,arial,sans-serif;font-size:11px;color:#FFFFFF;text-decoration:none}
&#38;lt;!-- HEADER TEXT FADE CSS END --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Try changing:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;!-- HEADER TEXT FADE CSS END --&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;to&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;/style&#38;gt;
&#38;lt;!-- HEADER TEXT FADE CSS END --&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>matturmy on "Need Help Bad!"</title>
<link>http://wordpress.org/support/topic/334223#post-1289530</link>
<pubDate>Sat, 21 Nov 2009 22:09:02 +0000</pubDate>
<dc:creator>matturmy</dc:creator>
<guid isPermaLink="false">1289530@http://wordpress.org/support/</guid>
<description>&#60;p&#62;When I started my website, someone that i don't know (friend of a friend that I can't contact) coded in a revolving text banner of blurbs about my music into the header of my website. (www.matturmy.com)&#60;/p&#62;
&#60;p&#62;For some reason, the text has stopped fading in and out at random like it's supposed to, and it is running down the entire homepage of the site. not only does it look crappy and unprofessional, it is making it hard to utilize the applications on the site...i've looked at the js, css, and html coding in the &#34;header,&#34; but i can't figure this one out...it's over my head.&#60;/p&#62;
&#60;p&#62;Anyone wanna help me???!!!&#60;/p&#62;
&#60;p&#62;cheers,&#60;br /&#62;
matt.
&#60;/p&#62;</description>
</item>
<item>
<title>parmenti on "Help tweak javascript - scrolling page"</title>
<link>http://wordpress.org/support/topic/325330#post-1289356</link>
<pubDate>Sat, 21 Nov 2009 18:50:35 +0000</pubDate>
<dc:creator>parmenti</dc:creator>
<guid isPermaLink="false">1289356@http://wordpress.org/support/</guid>
<description>&#60;p&#62;hi, any idea how this might be added to a single div/element?  I would like it to work in 1 particular div.. but not be applied to the whole page as it prevents scrolling on all other divs.  Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>de1337er on "Can't seem to add JavaScript to my header"</title>
<link>http://wordpress.org/support/topic/334062#post-1289021</link>
<pubDate>Sat, 21 Nov 2009 08:48:22 +0000</pubDate>
<dc:creator>de1337er</dc:creator>
<guid isPermaLink="false">1289021@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm trying to include this &#60;a href=&#34;http://rapidwizard.net/apis.php&#34;&#62;Link Checker&#60;/a&#62; (the JavaScript API) into my Wordpress posts but nothing appears to happen. I put it in right paste the &#38;lt;/title&#38;gt; tag in my theme's header.php file. Any ideas why nothing happens?&#60;/p&#62;
&#60;p&#62;I'd also like to be able to have it so users can highlight a block of text (specifically the the links that are to be checked) so they can copy and later paste the links strictly as plain text, ie. without copying the checkmark image along with the text like it would happen if you tried pasting them into Wordpress' visual post editor.
&#60;/p&#62;</description>
</item>
<item>
<title>stvwlf on "How do I get Javascript to work in a page?"</title>
<link>http://wordpress.org/support/topic/334018#post-1288956</link>
<pubDate>Sat, 21 Nov 2009 05:15:04 +0000</pubDate>
<dc:creator>stvwlf</dc:creator>
<guid isPermaLink="false">1288956@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Javascript will work when called from header.php, or placed in footer.php just before the closing body tag.  Are you sure your code doesn't have errors in it?&#60;/p&#62;
&#60;p&#62;Check View Source and make sure WP is finding your js code.
&#60;/p&#62;</description>
</item>
<item>
<title>wardwelfare on "How do I get Javascript to work in a page?"</title>
<link>http://wordpress.org/support/topic/334018#post-1288883</link>
<pubDate>Sat, 21 Nov 2009 01:52:49 +0000</pubDate>
<dc:creator>wardwelfare</dc:creator>
<guid isPermaLink="false">1288883@http://wordpress.org/support/</guid>
<description>&#60;p&#62;How do I get Javascript to work in a page?&#60;/p&#62;
&#60;p&#62;I added the plugin, and activated it.&#60;br /&#62;
Pasted the javascript into the page.&#60;br /&#62;
Pasted the call to javascript in header.php&#60;/p&#62;
&#60;p&#62;Still no go.&#60;/p&#62;
&#60;p&#62;Any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>villeda on "Christmas Lights"</title>
<link>http://wordpress.org/support/topic/226549#post-1288525</link>
<pubDate>Fri, 20 Nov 2009 20:30:33 +0000</pubDate>
<dc:creator>villeda</dc:creator>
<guid isPermaLink="false">1288525@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have a problem, i used the ntomic's plugin, and this show the lights on my blog. but deactivates the links on my page, ie: I can not click on the navigation menu. I'm using google chrome.
&#60;/p&#62;</description>
</item>
<item>
<title>shaiss on "Overlay a page"</title>
<link>http://wordpress.org/support/topic/333914#post-1288407</link>
<pubDate>Fri, 20 Nov 2009 18:44:03 +0000</pubDate>
<dc:creator>shaiss</dc:creator>
<guid isPermaLink="false">1288407@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have a page that has a few lines on there.  Instead of users clicking and being taken to that page I'd like the page to popup as an overlay similar to lightbox or simplemoudle and others do with images.&#60;/p&#62;
&#60;p&#62;Is there a plugin for such a thing?
&#60;/p&#62;</description>
</item>
<item>
<title>realstorm2006 on "[Help] Post Tags not working"</title>
<link>http://wordpress.org/support/topic/291923#post-1287749</link>
<pubDate>Fri, 20 Nov 2009 06:05:57 +0000</pubDate>
<dc:creator>realstorm2006</dc:creator>
<guid isPermaLink="false">1287749@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm using Mozilla Firefox and have the same problem. This is - from two days it became annoying and ridiculous. Any help out there?&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>toyNN on "Password protected page still shows even after cookie expired"</title>
<link>http://wordpress.org/support/topic/281227#post-1287727</link>
<pubDate>Fri, 20 Nov 2009 05:03:33 +0000</pubDate>
<dc:creator>toyNN</dc:creator>
<guid isPermaLink="false">1287727@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Same issue here and I was able to locate and apply a &#34;fix&#34;,&#60;/p&#62;
&#60;p&#62;Find your wp-pass.php file in the WordPress root install folder. Download and save a copy. Then edit it and look for the following line of code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;setcookie(&#38;#39;wp-postpass_&#38;#39; . COOKIEHASH, $_POST[&#38;#39;post_password&#38;#39;], time() + 864000, COOKIEPATH);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Change the 10 day cookie timeout of &#34;864000&#34; (number of seconds) to something like &#34;60&#34;.&#60;/p&#62;
&#60;p&#62;Upload and overwrite the existing wp-pass.php file (again make sure you have a backup of the original just in case).&#60;/p&#62;
&#60;p&#62;Reset the passwords on your protected pages to clear any existing cookies and the new timeout should be in effect.&#60;/p&#62;
&#60;p&#62;Also if interested in customizing the Protected page prompt check out this nice post: &#60;a href=&#34;http://wordpress.org/support/topic/323715?replies=16&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/support/topic/323715?replies=16&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>songdogtech on "How do I get my Javascript to work inside a static page?"</title>
<link>http://wordpress.org/support/topic/333685#post-1287698</link>
<pubDate>Fri, 20 Nov 2009 04:06:24 +0000</pubDate>
<dc:creator>songdogtech</dc:creator>
<guid isPermaLink="false">1287698@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Delete this &#60;code&#62;// &#38;lt;![CDATA[//&#38;lt;![CDATA[/ /&#38;gt;&#60;/code&#62; from the beginning of the script on the wordpress page; that's incorrect validation escaping and commenting, and the static page doesn't have it.
&#60;/p&#62;</description>
</item>
<item>
<title>wardwelfare on "How do I get my Javascript to work inside a static page?"</title>
<link>http://wordpress.org/support/topic/333685#post-1287666</link>
<pubDate>Fri, 20 Nov 2009 02:55:32 +0000</pubDate>
<dc:creator>wardwelfare</dc:creator>
<guid isPermaLink="false">1287666@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have published it here in the hope that someone can help me get this page working. Here it is ...&#60;br /&#62;
&#60;a href=&#34;http://providentliving.org.nz/food-storage/food-storage-calculator/&#34; rel=&#34;nofollow&#34;&#62;http://providentliving.org.nz/food-storage/food-storage-calculator/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Note that it works well at ...&#60;br /&#62;
&#60;a href=&#34;http://www.wardwelfare.org/wardwelfare/food-calculator.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.wardwelfare.org/wardwelfare/food-calculator.htm&#60;/a&#62;&#60;br /&#62;
Same code. Moved from .html to Wordpress static page.&#60;/p&#62;
&#60;p&#62;Can anyone help to get this working?&#60;br /&#62;
Thanks in advance,&#60;br /&#62;
H
&#60;/p&#62;</description>
</item>
<item>
<title>wardwelfare on "How do I get my Javascript to work inside a static page?"</title>
<link>http://wordpress.org/support/topic/333685#post-1287655</link>
<pubDate>Fri, 20 Nov 2009 02:44:38 +0000</pubDate>
<dc:creator>wardwelfare</dc:creator>
<guid isPermaLink="false">1287655@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have removed all the white space in the javascript code. The javascript is still not working. What is the white space I get in the page just above the javascript? I can't see where it is coming from or why this is not working. Can anyone help?
&#60;/p&#62;</description>
</item>
<item>
<title>songdogtech on "How do I get my Javascript to work inside a static page?"</title>
<link>http://wordpress.org/support/topic/333685#post-1287612</link>
<pubDate>Fri, 20 Nov 2009 01:29:22 +0000</pubDate>
<dc:creator>songdogtech</dc:creator>
<guid isPermaLink="false">1287612@http://wordpress.org/support/</guid>
<description>&#60;br /&#62;</description>
</item>
<item>
<title>songdogtech on "How do I get my Javascript to work inside a static page?"</title>
<link>http://wordpress.org/support/topic/333685#post-1287611</link>
<pubDate>Fri, 20 Nov 2009 01:28:45 +0000</pubDate>
<dc:creator>songdogtech</dc:creator>
<guid isPermaLink="false">1287611@http://wordpress.org/support/</guid>
<description>&#60;p&#62;My experience is you need to take all the white space out in the javascript code; Wordpress adds paragraph and line breaks in both html and visual view and that breaks the javascript.
&#60;/p&#62;</description>
</item>
<item>
<title>wardwelfare on "How do I get my Javascript to work inside a static page?"</title>
<link>http://wordpress.org/support/topic/333685#post-1287591</link>
<pubDate>Fri, 20 Nov 2009 01:05:25 +0000</pubDate>
<dc:creator>wardwelfare</dc:creator>
<guid isPermaLink="false">1287591@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have an html file which contains javascript at ...&#60;br /&#62;
&#60;a href=&#34;http://www.wardwelfare.org/wardwelfare/food-calculator.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.wardwelfare.org/wardwelfare/food-calculator.htm&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I want to drop it into a static page.&#60;br /&#62;
When I do this it fails to work.&#60;br /&#62;
Any ideas?&#60;/p&#62;
&#60;p&#62;I have added &#38;lt;script type=&#34;text/javascript&#34; src=&#34;/scripts/emailpage.js&#34;&#38;gt;&#38;lt;/script&#38;gt; into header.php&#60;/p&#62;
&#60;p&#62;Thanks in advance,&#60;br /&#62;
Hank
&#60;/p&#62;</description>
</item>
<item>
<title>mzuvella on "Adding Javascript to Text Links"</title>
<link>http://wordpress.org/support/topic/333669#post-1287516</link>
<pubDate>Thu, 19 Nov 2009 23:50:14 +0000</pubDate>
<dc:creator>mzuvella</dc:creator>
<guid isPermaLink="false">1287516@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am trying to add a e-junkie javascript link to one of my pages on my site. Basically I am trying to have my javascript shopping cart pop up on click of my page titled &#34;cart&#34; so users can access their shopping cart from the top nav bar.&#60;/p&#62;
&#60;p&#62;Anyone have a plug-in or some help on this matter?&#60;/p&#62;
&#60;p&#62;Thanks.&#60;/p&#62;
&#60;p&#62;My site is: &#60;a href=&#34;http://www.stock-flyers.com&#34; rel=&#34;nofollow&#34;&#62;www.stock-flyers.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>JJP on "[Plugin: NextGEN Gallery] Thickbox effect not working; jumps straight to image URL, why?!"</title>
<link>http://wordpress.org/support/topic/333665#post-1287493</link>
<pubDate>Thu, 19 Nov 2009 23:31:40 +0000</pubDate>
<dc:creator>JJP</dc:creator>
<guid isPermaLink="false">1287493@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;First off, I LOVE the NextGen Gallery plugin!!! That's why I'm so bummed it's not working properly at the moment: I'm working on a new theme for &#60;a href=&#34;http://www.blue22.net/temple_of_poseidon/&#34;&#62;my website&#60;/a&#62; based off of &#60;a href=&#34;http://wpcult.com/working-on-a-new-theme-called-wordcult/&#34;&#62;&#60;strong&#62;WordCult&#60;/strong&#62;&#60;/a&#62; and I've noticed with NGG the image thumbnails jump straight to the image target path instead of displaying the thickbox effect as it normally should. It seems to work without a hitch with other themes, but for some reason not with the &#60;strong&#62;WordCult&#60;/strong&#62; theme and by extension my developmental theme based off it &#60;a href=&#34;http://www.blue22.net/temple_of_poseidon/?theme=wc_b22&#34;&#62;here&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;I scoured the forums here for information and aside from ticking off the usual suspects like making sure the &#60;code&#62;&#38;lt;?php wp_head(); ?&#38;gt;&#60;/code&#62; is present in the theme and such I still can't figure out the exact source problem. However, I'm suspecting it may be rooted in a JavaScript conflict somewhere within the theme, but unfortunately I have yet to be able to confirm this.&#60;/p&#62;
&#60;p&#62;If anyone has some insight or similar experience with this issue I'd greatly appreciate any insight you could share. Thanks!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/nextgen-gallery/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/nextgen-gallery/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>fkaf on "Anyone know what causing this?"</title>
<link>http://wordpress.org/support/topic/333458#post-1286814</link>
<pubDate>Thu, 19 Nov 2009 13:46:36 +0000</pubDate>
<dc:creator>fkaf</dc:creator>
<guid isPermaLink="false">1286814@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks.&#60;br /&#62;
I searched for it and removed the line. I don?t know what the script was good for!?
&#60;/p&#62;</description>
</item>
<item>
<title>samboll on "Anyone know what causing this?"</title>
<link>http://wordpress.org/support/topic/333458#post-1286777</link>
<pubDate>Thu, 19 Nov 2009 13:03:03 +0000</pubDate>
<dc:creator>samboll</dc:creator>
<guid isPermaLink="false">1286777@http://wordpress.org/support/</guid>
<description>&#60;p&#62;maybe something to do with your theme?&#60;br /&#62;
this is what is being called&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;li&#38;gt;&#38;lt;a class=&#38;quot;lastmenu&#38;quot; href=&#38;quot;javascript:void(0);&#38;quot;&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>fkaf on "Anyone know what causing this?"</title>
<link>http://wordpress.org/support/topic/333458#post-1286770</link>
<pubDate>Thu, 19 Nov 2009 12:53:55 +0000</pubDate>
<dc:creator>fkaf</dc:creator>
<guid isPermaLink="false">1286770@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I got an extra empty space in my top menu. When I move the pointer to it, it says javascript ; void. ??&#60;/p&#62;
&#60;p&#62;see &#60;a href=&#34;http://www.kjagen.com/medi_a/photos/travel/&#34; rel=&#34;nofollow&#34;&#62;http://www.kjagen.com/medi_a/photos/travel/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Hostels on "HTML entities in the URLs for load-scripts.php"</title>
<link>http://wordpress.org/support/topic/326448#post-1286205</link>
<pubDate>Wed, 18 Nov 2009 23:25:17 +0000</pubDate>
<dc:creator>Hostels</dc:creator>
<guid isPermaLink="false">1286205@http://wordpress.org/support/</guid>
<description>&#60;p&#62;It turns out that this is caused by WordPress events calendar plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>edelen on "AJAXed theme collapsible panels and SEO"</title>
<link>http://wordpress.org/support/topic/332352#post-1283301</link>
<pubDate>Mon, 16 Nov 2009 17:04:00 +0000</pubDate>
<dc:creator>edelen</dc:creator>
<guid isPermaLink="false">1283301@http://wordpress.org/support/</guid>
<description>&#60;p&#62;For clarity sake, I've been considering WordPress themes that use AJAXed collapsible panels which would contain my blog posts. (Only the post titles would display on the main site page, with readers clicking on the title to expand the panel that contains the post text.)&#60;/p&#62;
&#60;p&#62;My question concerned SEO. How can I optimize the JavaScripts in those AJAXed panels to ensure maximum SEO? Also, since those JavaScripts would run in the body of a theme page, would that automatically penalize me in search engines?&#60;/p&#62;
&#60;p&#62;Thanks in advance for your advice. It's a great help.
&#60;/p&#62;</description>
</item>
<item>
<title>kovshenin on "Using jQuery from an external domain"</title>
<link>http://wordpress.org/support/topic/330963#post-1278760</link>
<pubDate>Thu, 12 Nov 2009 15:19:44 +0000</pubDate>
<dc:creator>kovshenin</dc:creator>
<guid isPermaLink="false">1278760@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Err, that actually IS my problem, I cannot define a different location for the default jquery handler, thus using jquery-custom, but that would break with scripts that depend on jquery (as a handler).
&#60;/p&#62;</description>
</item>
<item>
<title>t31os_ on "Using jQuery from an external domain"</title>
<link>http://wordpress.org/support/topic/330963#post-1278722</link>
<pubDate>Thu, 12 Nov 2009 14:51:27 +0000</pubDate>
<dc:creator>t31os_</dc:creator>
<guid isPermaLink="false">1278722@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Not sure if this helps at all, but when you do..&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;wp_enqueue_script(&#38;#39;jquery&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Wordpress will check to see if it's loaded already, and if so, it doesn't included again..&#60;/p&#62;
&#60;p&#62;Just thought that might be worth mentioning.. :)
&#60;/p&#62;</description>
</item>
<item>
<title>kovshenin on "Using jQuery from an external domain"</title>
<link>http://wordpress.org/support/topic/330963#post-1278571</link>
<pubDate>Thu, 12 Nov 2009 10:15:45 +0000</pubDate>
<dc:creator>kovshenin</dc:creator>
<guid isPermaLink="false">1278571@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hey there, I'm running WordPress 2.8.5, I've got a custom theme with a &#60;code&#62;wp_enqueue_script(&#38;#39;jquery&#38;#39;);&#60;/code&#62; in the header.php file. Works okay, but now I'm trying to get rid of all the static content on my domain and move it to a CDN, Amazon CloudFront in my case. All the custom javascripts, css and images move fine, but I can't manage to move the jQuery library by using &#60;code&#62;wp_enqueue_script(&#38;#39;jquery&#38;#39;, &#38;#39;http://s.kovshenin.com/js/jquery.js&#38;#39;);&#60;/code&#62;, it's still being served from the standard wp-includes folder.. I think the handle is the problem and changing it to jquery-custom for instance would do the job, but I've got some other plugins that may be jquery dependant and define 'jquery' in the dependencies list in the wp_enqueue_script function, thus jquery will be included twice.&#60;/p&#62;
&#60;p&#62;Any ideas on how to fix that?&#60;br /&#62;
Thanks in advanced.&#60;/p&#62;
&#60;p&#62;~ @kovshenin
&#60;/p&#62;</description>
</item>

</channel>
</rss>
