<?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>PHPJavascript</title>
	<atom:link href="http://www.phpjavascript.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpjavascript.com</link>
	<description>Web Development Guide - My Personal Library of Tutorials and Scripts</description>
	<lastBuildDate>Thu, 02 May 2013 08:43:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Jquery mouseenter not working (Drupal)</title>
		<link>http://www.phpjavascript.com/jquery-mouseenter-not-working-drupal/</link>
		<comments>http://www.phpjavascript.com/jquery-mouseenter-not-working-drupal/#comments</comments>
		<pubDate>Thu, 02 May 2013 08:43:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=748</guid>
		<description><![CDATA[The jquery mouseenter and mouseleave methods were not working for me. Then after an hour of googling I found out that if I used bind() it works. $(document).ready(function() {  $(&#8216;.menu li&#8217;).bind(&#8216;mouseover&#8217;, function() {         $(&#8216;ul&#8217;, this).show();     });  $(&#8216;.menu li&#8217;).bind(&#8216;mouseleave&#8217;, function() {         $(&#8216;ul&#8217;, this).hide();     }); }); I am working on Drupal [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/jquery-mouseenter-not-working-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal Jquery Taxonomy Dropdown Menu</title>
		<link>http://www.phpjavascript.com/drupal-jquery-taxonomy-dropdown-menu/</link>
		<comments>http://www.phpjavascript.com/drupal-jquery-taxonomy-dropdown-menu/#comments</comments>
		<pubDate>Thu, 02 May 2013 08:29:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=745</guid>
		<description><![CDATA[I wanted to have a single level menu where the second and third level are shown of the taxonomy menu. Like barnesandnoble.com. I had taxonomy_menu module to create a menu from my taxonomy. Then I had used block_menu module to extract the desired level from my multi level taxonomy menu. Then I used the jquery [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/drupal-jquery-taxonomy-dropdown-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firebug Lite Not working Internet Explorer 7 ie7</title>
		<link>http://www.phpjavascript.com/firebug-lite-not-working-internet-explorer-7-ie7/</link>
		<comments>http://www.phpjavascript.com/firebug-lite-not-working-internet-explorer-7-ie7/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 08:01:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Stylesheets]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=741</guid>
		<description><![CDATA[Use the debug version by clicking on the &#8216;debug bookmarklet&#8217; on page https://getfirebug.com/firebuglite Then click on F12 and use internet explorer&#8217;s developer tools normally and you will notice that the firebug has been integrated in it, making all the difference needed. It took me sometime to figure that firebug was working, and boy was it [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/firebug-lite-not-working-internet-explorer-7-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal Jcarousel Views Javascript Hide Show</title>
		<link>http://www.phpjavascript.com/drupal-jcarousel-views-javascript-hide-show/</link>
		<comments>http://www.phpjavascript.com/drupal-jcarousel-views-javascript-hide-show/#comments</comments>
		<pubDate>Mon, 11 Mar 2013 04:31:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=738</guid>
		<description><![CDATA[I had three jcarousel view blocks on my home page . On page load I wanted to hide two and only show one. Then by clicking on navigational links I wanted to show the other two while hiding the first one. To achieve that I was using display: none, but that was screwing up the [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/drupal-jcarousel-views-javascript-hide-show/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal Ubercart Update Cart in Checkout</title>
		<link>http://www.phpjavascript.com/drupal-ubercart-update-cart-in-checkout/</link>
		<comments>http://www.phpjavascript.com/drupal-ubercart-update-cart-in-checkout/#comments</comments>
		<pubDate>Wed, 06 Mar 2013 05:50:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubercart]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=735</guid>
		<description><![CDATA[To update cart contents in checkout I have this module http://www.ubercart.org/project/updatecartcheckout But I made the following changes to make it work function cart_in_checkout_ajax_submit() - print_r($qty); function ajax_cart_in_checkout_validate_form_addtocart($items) { -form_set_error(&#8220;items][$k][qty", $error); +form_set_error("items][$k][qty", $error['msg']); &#160;]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/drupal-ubercart-update-cart-in-checkout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal Imagecache Picture Background Image</title>
		<link>http://www.phpjavascript.com/drupal-imagecache-picture-background-image/</link>
		<comments>http://www.phpjavascript.com/drupal-imagecache-picture-background-image/#comments</comments>
		<pubDate>Mon, 04 Mar 2013 06:58:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=733</guid>
		<description><![CDATA[To put the an image background on an image (probably to give a fancy border) use imagecache module and imagecache canvas actions module Then create a preset with the following actions: Scale and Crop &#8211; Set dimensions of the inner image Define Canvas &#8211; Set the canvas with the final dimension of the image. Give [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/drupal-imagecache-picture-background-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubercart UC_MIGS skip review</title>
		<link>http://www.phpjavascript.com/ubercart-uc_migs-skip-review/</link>
		<comments>http://www.phpjavascript.com/ubercart-uc_migs-skip-review/#comments</comments>
		<pubDate>Thu, 28 Feb 2013 08:59:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubercart]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=731</guid>
		<description><![CDATA[I have used uc_migs payment gateway with ubercart. To skip review page you have to do the following: open uc_migs.module rewrite function uc_migs_form_alter(&#38;$form, &#38;$form_state, $form_id)  as /** * Implementation of hook_form_alter(). */ function uc_migs_form_alter(&#38;$form, &#38;$form_state, $form_id) { if($form_id == &#8216;uc_cart_checkout_form&#8217;) { $form['continue']['#value'] = variable_get(&#8216;uc_checkout_submit_button&#8217;, t(&#8216;Place order&#8217;)); // Add our submit handler. $form['#submit'][] = &#8216;uc_migs_form_submit&#8217;; } [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/ubercart-uc_migs-skip-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal Webform Submission Extremely Slow Server Transfer</title>
		<link>http://www.phpjavascript.com/webform-submission-extremely-slow-server-transfer/</link>
		<comments>http://www.phpjavascript.com/webform-submission-extremely-slow-server-transfer/#comments</comments>
		<pubDate>Thu, 28 Feb 2013 05:53:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=726</guid>
		<description><![CDATA[When I transferred my drupal website on my client&#8217;s server the webform submissions were taking forever though they were fine on my test server. My client was using a virtual SMTP on their mail server hence I had to use the IP address for SMTP authentication instead of the server name ie something like 198.132.34.23 [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/webform-submission-extremely-slow-server-transfer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery ajax cart notifications over colorbox or lightbox</title>
		<link>http://www.phpjavascript.com/jquery-ajax-cart-notifications-over-colorbox-or-lightbox/</link>
		<comments>http://www.phpjavascript.com/jquery-ajax-cart-notifications-over-colorbox-or-lightbox/#comments</comments>
		<pubDate>Sun, 17 Feb 2013 05:45:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Ubercart]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=723</guid>
		<description><![CDATA[To solve this I opened the uc_ajax_cart.js (modules/uc_ajax_cart/js) and added  jQuery.blockUI.defaults.baseZ = 20000; to give the notification jquery block preference over any other div. I had this issue here http://www.phpjavascript.com/drupal-ubercart-product-quick-look/]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/jquery-ajax-cart-notifications-over-colorbox-or-lightbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal Ubercart Product Quick Look</title>
		<link>http://www.phpjavascript.com/drupal-ubercart-product-quick-look/</link>
		<comments>http://www.phpjavascript.com/drupal-ubercart-product-quick-look/#comments</comments>
		<pubDate>Thu, 07 Feb 2013 05:08:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Ubercart]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=718</guid>
		<description><![CDATA[Its simple (but takes forever to figure out), just make a view and make the link of the image in the following way: &#60;a href=&#8221;node/1532/lightbox2&#8243; rel=&#8221;lightframe&#8221;&#62;View&#60;/a&#62; Then make a template file page-node-lightbox2.tpl and upload to your theme. Remove all the unwanted structures from this file, like sidebar, header etc. I got this info from http://drupal.org/node/252260 [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/drupal-ubercart-product-quick-look/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
