Comment by easement on alternating row color disappears after initial onload...
my guess is that it's malformed HTML on the 2nd page.
View ArticleComment by easement on Drupal 5 Search not working on 404 pages
This got me in the right path. preprocess_page didn't have access to the $form, but I was able to search replace the action if the drupal_get_headers is a 404
View ArticleComment by easement on Drupal Exclude taxonomy listing pages from search
Ideally both, but I'll give you the bounty for excluding it from Druapal's search.
View ArticleComment by easement on Drupal Exclude taxonomy listing pages from search
What about for Drupal's search?
View ArticleComment by easement on php xml SimpleXMLElement
you have id=3 in your PHP code, but id="p3" in your XML. I don't know if this is causing you problems.
View ArticleComment by easement on Front page Featured Section
I like the nodequeue as well. Suppose you want to have control over the ordering. Suppose your view is sorted by reverse cron and you have an item that you want at the top, a nodequeue will allow this.
View ArticleComment by easement on IE png fix not calling from static domain when using...
Yeah, I tried images/ as well as ../images/ and neither of those worked. It looks like I have to use an absolute path. I'll probably replace it with a variable that gets set upon deployment.
View ArticleComment by easement on Bulk user creation in Zend Framework. Already have...
Thanks for taking the time to be so indepth. I am well on my way. Thanks.
View ArticleComment by easement on Another dateTime question
According to the ISO 8601 spec, you need to have leading zeros on all of the fields. You have them on all with the exception of the hours field. The 'G' should be an 'H' -> Y-m-d\TH:i:s\Z
View ArticleComment by easement on Why does jQuery slide down corrupt my embedded YouTube...
what's weird is if you refresh the page once you click the link, you'll see green and then the video loads. Maybe there's another event you need to trigger via callback once the slidedown is complete....
View ArticleComment by easement on What's going on in this infinite scrolling script?
Is this script included in the content coming back? If so, it looks like you could be setting loads to 0 each time at the top of the script. I'm not sure on the internals of the script, but it's using...
View ArticleComment by easement on Detect Support for Notifications
I'm not sure you need promises. Here's an example to get you started on how you can do it without promises by having a fallback. I'm not advocating the use of the plugin, but the example code on the...
View ArticleComment by easement on php reformat nested array
Changing the key name recursively: stackoverflow.com/questions/3808602/… . As for removing the keys, use unset($arr['level']); as you are looping though $arr
View ArticleComment by easement on Creating array from array
You'll need to loop over all the items to convert them all. Whether that's a loop you write, or use array_map secure.php.net/manual/en/function.array-map.php , you'll still need to touch each item....
View ArticleComment by easement on passing extra data to PHP through jQuery onclick
what happens if you print_r($_POST) in poll_vote.php? is it nested under something? It's showing up as getting posted for me under form data on a codepen.io - codepen.io/easement/pen/XNvWXp
View ArticleAnswer by easement for Compatibility issues with IE7?
remove the align center (aka align left on the landingMainContainter) and then floating the .landingTopInfo left.#landingMainContainer{ padding-left:10px; margin: 0 auto; **text-align: left;**...
View ArticleAnswer by easement for How to enable features for php-curl
It looks like you may need to recompile curl with the argument "--with-spnego" in your configure command. For an example of a configure command:http://curl.haxx.se/mail/lib-2012-02/0094.htmlFull on...
View ArticleAnswer by easement for How can I theme the template for edit or add a node...
Hmm. There may be a better way but what about a preprocess function.I'm still really new to Drupal, so I would maybe try something like this [code may not work]:<?phpfunction...
View ArticleAnswer by easement for Combining parent() and children() selectors in JQuery
You could do something like:$(this).closest('.preview').find('a img').attr('src')Closest Docs | Find Docs
View ArticleAnswer by easement for How do I make a "sticky menu" go back to it original...
maybe something along the lines of an else to restore the original classes. <script type="text/javascript"> $(window).scroll(function () { if (window.scrollY > 200) {...
View Article