I'm on Safari 3.1.1, fwiw.

Comments

karens’s picture

Status: Active » Postponed (maintainer needs more info)

If you want to report a bug, provide enough information that we can understand exactly what problem you had and how to reproduce it. This report is completely meaningless. What jQuery? There is jQuery in several places.

sprugman’s picture

Sorry. The jquery date entry pop-up widget on the entry form. It doesn't pop-up in Safari when you click in the date input field.

kevinquillen’s picture

use firefox

sprugman’s picture

I am. I just thought you'd like to know.

kevinquillen’s picture

Oh.

Is this Drupal 5.x?

I've found that its hard to implement good Jquery things with the 5 core ( I use it because it has all the modules I need that aren't to 6 yet) and I wrote a custom script in the page header of what jquery version to load depending on URL path.

The Jquery version in 5 core is simply old (from 2006).

sprugman’s picture

no, I'm on d6.

karens’s picture

Title: jquery doesn't work with safari » Date Popup doesn't work with safari
Component: User interface » Date Popup
Status: Postponed (maintainer needs more info) » Active

Fixing name and component to the real problem.

koolhead17’s picture

@gh0st25 am having problem in getting the jquery calender work.could you paste the code here explaining about about it`s implementation.

am using drupal 5.5

kevinquillen’s picture

I think it could do with the core jquery file being outdated in 5.x. I've found that out when implementing jquery plugins for the front end many times. Some would say to use jquery update module, but with things like TinyMCE, jquery update breaks the entire backend (pages come up blank with JS errors). Heres what I do to circumvent that on the sites I've done:


<?php /*  this loads the newest version of jquery needed for slideshows and banner. the core requires the old version. the jquery update module WILL BREAK the back end if installed. so dont.   */
		$thisURL = str_replace("q=", "", $_SERVER['QUERY_STRING']); 
			
		if (!preg_match('(node|admin|user)', $thisURL)) {
			print '<script type="text/javascript" src="'. base_path() . path_to_theme() .'/js/jquery.js"></script>';
		} else {
			print $scripts;
		}
	?> 

Where the path to my theme JS is the newest Jquery, and print $scripts is the Jquery with 5.x core. You could alter the preg_match to suit your needs according to the URL.

sprugman’s picture

I'm on drupal 6.

miiimooo’s picture

karens’s picture

Status: Active » Postponed (maintainer needs more info)

Is this still a problem with the latest code? The jQuery popup calendar code has been reworked since this was reported.

sprugman’s picture

I'm afraid it's still not working. It breaks in a usable way (you can just enter the text), so it's not critical. (I've switched away from the pop-up for this project, anyway.)

karens’s picture

I've also updated to the latest new datepicker code and added a test for the jQuery UI module to load it from there if the module exists. That code may work better with Safari.

tobbe_s’s picture

I do not have this problem in Safari, and date popup has worked for me in Safari for a long time now (can't remember when I installed date module). Using Drupal 6.3 and Date dev-version from July 27.

sprugman’s picture

Interesting. What version of safari are you using?

tobbe_s’s picture

I use Safari version 3.1.2 (5525.20.1), on Mac OS X 10.5.4.

sprugman’s picture

Huh. I'm pretty sure that's the same as me. I'll try again in the next couple days and report back.

karens’s picture

Status: Postponed (maintainer needs more info) » Fixed

No response in many months and lots of changes since, so assuming fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

xeeshangulzar’s picture

Hi

I am facing the same issue. Date popup is not displaying on my iPhone and Mac book at safari. It is working fine with other browsers like Opera, chrome etc. Please if you can help me.I am using the following modules.

Drupal Core 7.15
Date 7.x-2.6

xeeshangulzar’s picture

Version: 6.x-2.x-dev » 7.x-2.6
Status: Closed (fixed) » Active

Hi

I am facing the same issue. Date popup is not displaying on my iPhone and Mac book at safari. It is working fine with other browsers like Opera, chrome etc. Please if you can help me.I am using the following modules.

Drupal Core 7.15
Date 7.x-2.6