[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-20 Thread Mech7
What is not working correctly with me is when I hover the dropdown menu i change the color of the sifr text so it remains black: http://www.mech7.net/tmp/sifr/ In script.js in line 26: ,onRollOut: function(cb) { var currentMenuItem =

[jQuery] making autocomplete right to left

2008-10-20 Thread alex bodnaru
hello friends, i am using autocomplete in a possibly right to left environment, hence i needed 2 changes: 1. putting the loading gif to the left (done in attached code); 2. putting the scrolling bar to the left. here i'd appreciate your help with a solution. thanks in advance, alex

[jQuery] Re: how can i get the direction of an html element?

2008-10-20 Thread alex bodnaru
solved, thanks anyway. On Mon, Oct 20, 2008 at 05:25, alex bodnaru [EMAIL PROTECTED] wrote: hello friends, in my case, the direction is not being set through the dir attribute, but it's inherited from the parents of the widget. how can i get this attribute in jquery? best regards, alex

[jQuery] Activate checkbox from URL

2008-10-20 Thread Alex Hempton-Smith
Hi all, I'm using the Flot graphing plugin and I'd like to be able to have a specific series highlighted depending on the URL, as I want to link to it. This will mean activating a checkbox depending on the URL, for example: /results/#science Would activate the checkbox with ID of 'science' or

[jQuery] Re: Resetting the html in a div affects the behaviour of event handling?

2008-10-20 Thread Mario
Thank you very much for the hint. Now that you set me on the right path, I will try first to better understand the bind function. Best, Mario

[jQuery] Re: Disabling jQuery on printing?

2008-10-20 Thread iantresman
I'm sure my jQuery scripts are doing something, because I when I REM them out, my printouts are fine. On Oct 19, 7:15 pm, ricardobeat [EMAIL PROTECTED] wrote: The media attribute is only for CSS files, not scripts... scripts never run when printing. On Oct 19, 9:25 am, iantresman [EMAIL

[jQuery] Re: draggable plugin problem

2008-10-20 Thread weidc
still got that problem. On 17 Okt., 16:23, weidc [EMAIL PROTECTED] wrote: Hi, well i used and still use the draggable plugin in a script. it worked fine 'till they changed the site a bit. after i changed my script firebug says: $[namespace][name] is not a constructor [Break on this

[jQuery] Charset with data loaded through ajax

2008-10-20 Thread XeroXer
Hi! I have started using ajax to load data on a homepage for a faster easier usage. The homepage is created using ISO-8859-1 as charset and that seems to cause a few problems using ajax. Everything works fine until I get data with åäö in the content, then ajax insted sends strange signs. It

[jQuery] Re: Disabling jQuery on printing?

2008-10-20 Thread Ca-Phun Ung
On Mon, Oct 20, 2008 at 4:13 PM, iantresman [EMAIL PROTECTED] wrote: I'm sure my jQuery scripts are doing something, because I when I REM them out, my printouts are fine. Could you post up a demo? -- Ca-Phun Ung + http://yelotofu.com + css, django, hongkong, html, javascript, php

[jQuery] Datepicker issues with setDate

2008-10-20 Thread [EMAIL PROTECTED]
Hi, #StartDate and #EndDate are my two input fields that I've converted to datePickers. Now if I call setDate to change the range to the past week like that : $(#fStartDate, #fEndDate).datepicker(setDate, -1w, null); Both input are set to 13th of October (today is 20th). I'd expect #EndDate

[jQuery] default date does not seem to work in DatePicker

2008-10-20 Thread [EMAIL PROTECTED]
Hi, I keep finding issues with this control :( Here's how I created the range : $(#fStartDate, #fEndDate).datepicker({ showOn: button, buttonImage: images/calendar.gif, buttonImageOnly: true, defaultDate: null, beforeShow: customRange, hideIfNoPrevNext: true,

[jQuery] Re: set dom id

2008-10-20 Thread Isaak Malik
$('.class-name').attr('id', 'newid'); On Mon, Oct 20, 2008 at 8:55 AM, sqad [EMAIL PROTECTED] wrote: I need to dynamically set the DOM 'id' attritube for elements using jQuery notation. Is that possible, if so, can I get an example please? $('element-id')[id] = newid doesn't quite work.

[jQuery] Re: Redirect browser to separate page after animation

2008-10-20 Thread BB
Try: $(.blah).click(function () { $(.block).fadeIn(slow, function() { window.location.href = foo.html; }); }); On 20 Okt., 11:03, Awesome [EMAIL PROTECTED] wrote: Is it possible to redirect the browser to a separate page after a jQuery function? For example:

[jQuery] How To Create Array(s) in jQuery?

2008-10-20 Thread aj is in
It seems that the default format for creating Arrays in JavaScript is not compatible with jQuery. Please post the proper method to create Array(s) in jQuery. enjoy :)

[jQuery] Ajax Request - Success and Failure Events

2008-10-20 Thread thornhawk
Hi All, I was reading the jQuery help docs (in the Ajax Events section), and I came across this statement: you can never have both an error and a success callback with a request Does anyone know why you can't do this? I can think of a number of situations where you would need to cater for both

[jQuery] Re: JQuery not working for dynamic content

2008-10-20 Thread Mike Alsup
i am loading xml data via ajax and using it to append rows in an html table. each table row (TR) has a class and an event is supposed to fire whenever the row is clicked. but it seems my jquery events are not aware of the new content. how do i sort this one out?

[jQuery] Printing this page button

2008-10-20 Thread gemmes
Hi all, I have a print.css stylesheet attached to a page on my site. When I click on my print icon I want to go to the Print Properties window. I need this to work in all browsers. Is there a way to do this with jQuery? Is there a plugin? etc. pls help gemmes

[jQuery] Re: Tab scrolling

2008-10-20 Thread Jecki
Hi, I'm also in the need of this feature. So I tried to come out with something and now I want to propose to the community. This is a basic thing that came into my mind. I don't how to show the demo. Can I attach a zip file (containing the demo page, js, css, etc) here? Regards, Jecki On Sep

[jQuery] Re: How To Create Array(s) in jQuery?

2008-10-20 Thread aj is in
What makes you say that?  An array is an array is an array.  jQuery doesn't change how they work or how you create them. Yep. An array is an Array. But in my case while working with jQuery the array data is not executing properly and the same is working fine in typical javascript. :|

[jQuery] Re: How To Create Array(s) in jQuery?

2008-10-20 Thread Stefan Sturm
Perhaps you should give us an example... 2008/10/20 aj is in [EMAIL PROTECTED]: What makes you say that? An array is an array is an array. jQuery doesn't change how they work or how you create them. Yep. An array is an Array. But in my case while working with jQuery the array data is not

[jQuery] Re: some doubt

2008-10-20 Thread ricardobeat
hmm. That is not on the list of supported selectors, but you can use these: $('.test ~ div div') or $('.test ~ div').children('div') - ricardo On Oct 20, 12:17 am, 汪杰 [EMAIL PROTECTED] wrote: when you test $(.test ~ div div) , you'll see what i mean

[jQuery] Re: using jquery to get at the img data???

2008-10-20 Thread ricardobeat
You can't get the image data directly, just as you can't get a script's content. Would be nice being able to clone them, but unfortunately that's currently impossible. - ricardo On Oct 19, 8:19 pm, whitewaterbug [EMAIL PROTECTED] wrote: I believe this would require a 2nd download of the image

[jQuery] Linkselect Plug-in Released...

2008-10-20 Thread Dan G. Switzer, II
My current employer has released another jQuery plug-in: the Linkselect jQuery Plug-in. This plug-in converts a normal select / element into a component that can be highly stylized via CSS. While there are a number of similar plug-ins already, there are a several of key differences which we think

[jQuery] Re: Printing this page button

2008-10-20 Thread tlphipps
window.print(); Just standard javascript. On Oct 20, 7:39 am, gemmes [EMAIL PROTECTED] wrote: Hi all, I have a print.css stylesheet attached to a page on my site. When I click on my print icon I want to go to the Print Properties window. I need this to work in all browsers. Is there a

[jQuery] Redirect browser to separate page after animation

2008-10-20 Thread Awesome
Is it possible to redirect the browser to a separate page after a jQuery function? For example: $(.blah).click(function () { $(.block).fadeIn(slow); }); As soon as the fade in animation is complete load the webpage foo.html

[jQuery] Re: Simple AJAX Question

2008-10-20 Thread ricardobeat
Ajax calls don't reload the page. The easiest way is to use JSON: $('li').click(function(){ var _name = $(this).text(); $.getJSON(getdata.php,{ name: _name }, function(data) { alert('name is: '+ data.name) }); }); Then your server script must return a Javascript object: { name:

[jQuery] Re: Printing this page button

2008-10-20 Thread gemmes
This does not work in IE6 for me. IE7 FF fine. I have not tried Opera, Safari yet. thanks anyway On Oct 20, 3:03 pm, tlphipps [EMAIL PROTECTED] wrote: window.print(); Just standard javascript. On Oct 20, 7:39 am, gemmes [EMAIL PROTECTED] wrote: Hi all, I have a print.css stylesheet

[jQuery] ScrollBar issue with Tab key in input controls

2008-10-20 Thread csplrj
In this http://tradeera.com/contact.html When the user tabs through all the controls the ScrollBar does not goes down instead the whole div goes down and so the whole scrollbar gets invisible till the time we get to the last i.e. When we click the first textbox and then click Tab then the

[jQuery] Re: JQuery Selector and Java Script Variable

2008-10-20 Thread Remy Sharp
I just tried dropped in some vanilla XML and it saves and renders fine: http://jsbin.com/uwedo/edit I cleared out the JavaScript tab, and just entered plain old XML in the HTML tab - the saved output is just XML: http://jsbin.com/uwedo/ yeah! I couldn't manage to put xml in jsbin. I

[jQuery] Re: Calling seperate function in each()

2008-10-20 Thread XeroXer
I have returned with yet another question. If I want to collapse all the other menu items before expanding the clicked one I tried using this: ... .bind('showme', function() { $(a.Category).trigger(showme); $(this).data(hidden, false).parent(li) .css({background: #00ff00}).children(ul).show();

[jQuery] Re: Way to use a Multi-Line Example Prompt in a Single-line Text Input Field

2008-10-20 Thread Wayne
By way of example, here's what I'm currently using. I'm not happy with the textarea actions, though. http://dev.ficclaims.com/test/textbox.php Would it be smarter to use a textarea and switch it to an input[type=text] on click? Thanks, -Wayne On Oct 17, 1:16 pm, Wayne [EMAIL PROTECTED] wrote:

[jQuery] JQuery not working for dynamic content

2008-10-20 Thread Guruuswa
i am loading xml data via ajax and using it to append rows in an html table. each table row (TR) has a class and an event is supposed to fire whenever the row is clicked. but it seems my jquery events are not aware of the new content. how do i sort this one out?

[jQuery] Re: Only Fire Mouseover If Not Already Active

2008-10-20 Thread ricardobeat
This helps a bit, but there are still many problems.. your best bet is to avoid covering the button with the popup: // Make icon fade $(nowIcon).mouseover(function(){ if ( !$(nowPopup).is(':visible') ) {

[jQuery] Re: Disabling jQuery on printing?

2008-10-20 Thread ricardobeat
In-line CSS modifications will remain. When you send the window.print() command, the page is printed *as it is* at the moment, including styling via Javascript. If something is affecting your print output, it is happening before you press 'print'. - ricardo On Oct 20, 6:39 am, Ca-Phun Ung

[jQuery] Re: Printing this page button

2008-10-20 Thread tlphipps
That javascript method is fully supported in IE6. We use it all the time. On Oct 20, 9:26 am, gemmes [EMAIL PROTECTED] wrote: This does not work in IE6 for me. IE7 FF fine. I have not tried Opera, Safari yet. thanks anyway On Oct 20, 3:03 pm, tlphipps [EMAIL PROTECTED] wrote:

[jQuery] Re: JQuery Selector and Java Script Variable

2008-10-20 Thread ricardobeat
You can use this syntax: if ( $('#elementToBeUpdated').is('input,textarea') ) { // use val(); } else { // use text(); } or you can take advantage of the empty return object (only one will execute): $('#element').filter('input,textarea').val(new);

[jQuery] Re: Activate checkbox from URL

2008-10-20 Thread Dan Switzer
Alex, On Mon, Oct 20, 2008 at 3:38 AM, Alex Hempton-Smith [EMAIL PROTECTED] wrote: I'm using the Flot graphing plugin and I'd like to be able to have a specific series highlighted depending on the URL, as I want to link to it. This will mean activating a checkbox depending on the URL, for

[jQuery] Re: How To Create Array(s) in jQuery?

2008-10-20 Thread ricardobeat
The jQuery functionality available through $() only works for DOM elements, including an array of them. Other JS objects will fail. Anyway, like Stefan said, an example would be very helpful. - ricardo On Oct 20, 11:29 am, aj is in [EMAIL PROTECTED] wrote: What makes you say that?  An array

[jQuery] Mouse-responsive scrolling content within a container, with mouse position and easing

2008-10-20 Thread dzeibin
Hi! I'm trying to emulate a Flash behavior I see quite often, like so: http://mgb-architecture.ca/ I've implemented a one-to-one scrolling version here, but I would like it to be smoother, easing in to its final position based on the mouse position: http://www.jillanholt.ca/projects The

[jQuery] Re: Way to use a Multi-Line Example Prompt in a Single-line Text Input Field

2008-10-20 Thread Dan Switzer
Wayne: I'm trying to prompt for input within the field using the Example plugin (http://plugins.jquery.com/project/example). The idea is that I'm styling my input field to be unsually large when the user types (it will be no more than a 4 or 5 digits), so I can use closer to normal size

[jQuery] Re: Printing this page button

2008-10-20 Thread gemmes
Hmm... window.print() does not work on my IE6 browser but seems to work for other people. thanks for your help gemmes On Oct 20, 3:54 pm, tlphipps [EMAIL PROTECTED] wrote: That javascript method is fully supported in IE6.  We use it all the time. On Oct 20, 9:26 am, gemmes [EMAIL

[jQuery] Can't get it work...-_-

2008-10-20 Thread jockey
I use perl as server-side language to generate webpages dynamically. The generated html page is as following: ### html body a href=#Hello World/a div id=boxHow are you/div /body ### html the jquery file: ###

[jQuery] multi column Sort with pagination and filtering

2008-10-20 Thread jbird
Hi all, I am faily new to jquery and love it. I am in need of the ability to sort across multiple columns, filtering and pagination. I have tried the DATATABLES plugin which has everything I need except the multi-column sort. I have tried to modify the sort function to make it multi-column and

[jQuery] ui.tabs + cycle + WebKit = not working

2008-10-20 Thread psurrena
Hello, I am running into a problem on my website when the jQuery cycle plugin is used with ui.tabs. When a portfolio item has multiple images, the Cycle plugin is used for pagination. I chose this plugin since it's easy to add a description / file links / web address and, I didn't want image

[jQuery] Re: How to gzip a javascript file | I am not able to find.

2008-10-20 Thread leveille
Are you certain that you have enabled/loaded the deflate module on your server? Add a phpinfo() page (I'm assuming you are writing a PHP app based on earlier comments) and look for the section labeled Loaded Modules. In that section, look for mod_deflate as a loaded module. On Oct 19, 2:08 

[jQuery] Edit table

2008-10-20 Thread Olle Asplund
Hello. I was wondering if you guys knew how to edit a table cell with JQuery and update it? I'm currently using JAVA/Spring for my webapp but I can't seem to figure out how to update a table cell within my jsp-page in the database. I have tried the plugin UITableEdit and tableEditor but the

[jQuery] jQuery can't work if sending http header with text/xml

2008-10-20 Thread jockey
I use perl as server-side language to generate pages dynamically. The problem is: if I use == $q-header(-type='text/html', - charset='utf-8'); == jQuery works fluently. But if I use == $q-header(-type='text/xml', -charset='utf-8'); == jQuery fail to do the job. I use MathML in my pages, so I have

[jQuery] Re: Linkselect Plug-in Released...

2008-10-20 Thread Ca-Phun Ung
Very cool! Excellent work! I like how you are able to change the entire look purely through CSS. It also looks very adaptable. Thanks for sharing. :) On Mon, Oct 20, 2008 at 9:57 PM, Dan G. Switzer, II [EMAIL PROTECTED] wrote: My current employer has released another jQuery plug-in: the

[jQuery] Re: ui.tabs + cycle + WebKit = not working

2008-10-20 Thread Mike Alsup
This is ideal but does not work with webkit...ie and mozzila work fine. div id=navpos         div id=nav/a/div /div div id=pager -- Cycle Div --         div id=wrt -- Tab Div --                 ?php                         include_once(portfolio/wrt.php);                 ?         /div

[jQuery] Re: ui.tabs + cycle + WebKit = not working

2008-10-20 Thread psurrena
http://www.petersurrena.com/ The first project that loads is a great example of the problem. On Oct 20, 11:16 am, Mike Alsup [EMAIL PROTECTED] wrote: This is ideal but does not work with webkit...ie and mozzila work fine. div id=navpos         div id=nav/a/div /div div id=pager --

[jQuery] Re: Disabling jQuery on printing?

2008-10-20 Thread Ca-Phun Ung
To be more constructive lets analyse what we're trying to do in the first place. Based on the code posted am I right to assume that the maphilight() method applied to $('.map') writes inline css / markup to highlight the map? If so there are a few ways to remove these highlights for print. First

[jQuery] Re: JQuery Selector and Java Script Variable

2008-10-20 Thread RotinPain
@ricardobeat: Great! thank you for your help. I see that there are plenty of manners that can be used to retrieve the type of an element, now it's to choose the good one ;) . I'll use the ternary one for my code but I will also keep in mind the other functions you gave here for using them in my

[jQuery] validate plugin and radio button

2008-10-20 Thread hcvitto
hi another little issue in my long form:) i got 5 couples of radio button: input name=name1 type=radio value=si class=className / input name=name1 type=radio value=no class=className / input name=name2 type=radio value=si class=className / input name=name2 type=radio value=no class=className /

[jQuery] Re: using jquery to get at the img data???

2008-10-20 Thread Ca-Phun Ung
On Mon, Oct 20, 2008 at 6:19 AM, whitewaterbug [EMAIL PROTECTED]wrote: I believe this would require a 2nd download of the image so that it is within the applet. I am trying to get the actual image data into the applet through javascript to applet communication or having the applet access

[jQuery] pngFix and display:none

2008-10-20 Thread yabdab
I am seeing an issue in that POS browser IE6 that goes like this... pngFix() works only on images that are displayed. I have some hidden divs (display:none) that contain png files that are reveled when needed. But they are missing when I show() them. Any ideas what is happening to them?

[jQuery] ANNOUNCE: Context Menu Plugin v1.0 - new plugin with themes, highly extensible

2008-10-20 Thread Matt Kruse
I've just released version 1.0 of my Context Menu plugin: http://plugins.jquery.com/project/cmenu ( plugin home: http://www.javascripttoolbox.com/lib/contextmenu/ ) Here is the description from the plugin page: This plugin enables you to display a custom context menu on right click in browsers

[jQuery] Re: using jquery to get at the img data???

2008-10-20 Thread whitewaterbug
Canvas sounds like it might do the trick. Is canvas supported on IE and firefox? I looked into dataurl and the other limitation is also the size of the image must be small, which doesn't work for my purposes either. On Mon, Oct 20, 2008 at 11:55 AM, Ca-Phun Ung [EMAIL PROTECTED] wrote: On

[jQuery] Re: using jquery to get at the img data???

2008-10-20 Thread Ca-Phun Ung
Yes, Firefox supports canvas. Unfortunately IE does not... but I found this - http://ajaxian.com/archives/canvas-in-ie. I have not tried this so do not know whether it will work for you. Won't hurt to try though. :) On Tue, Oct 21, 2008 at 12:14 AM, whitewaterbug [EMAIL PROTECTED]wrote: Canvas

[jQuery] Re: Mouse-responsive scrolling content within a container, with mouse position and easing

2008-10-20 Thread ricardobeat
It's quite a heavy page for this kind of effect, Flash would look much smoother in most computers. This looks a little better, but is still rough: (caching the objects avoids looking up the DOM for each mousemove, checking for a distance greater than 10 saves 9 unnecessary function calls) var

[jQuery] Re: jQuery can't work if sending http header with text/xml

2008-10-20 Thread ricardobeat
Have you tried using an 'application/xhtml+xml' header? You could also put the MathML stuff inside an iframe in a XHTML page. On Oct 20, 12:05 pm, jockey [EMAIL PROTECTED] wrote: I use perl as server-side language to generate pages dynamically. The problem is: if I use ==

[jQuery] Re: pngFix and display:none

2008-10-20 Thread Isaak Malik
You just need to apply the pngfix to those elements as soon as they are shown. Nothing more, nothing less.. On Mon, Oct 20, 2008 at 5:59 PM, yabdab [EMAIL PROTECTED] wrote: I am seeing an issue in that POS browser IE6 that goes like this... pngFix() works only on images that are displayed. I

[jQuery] Re: How to gzip a javascript file | I am not able to find.

2008-10-20 Thread Sridhar Kuppalli
Hi, My php_info(); shows these things _ENV[HTTP_ACCEPT_ENCODING] == gzip,deflate HTTP_ACCEPT_ENCODING == gzip,deflate _SERVER[HTTP_ACCEPT_ENCODING] == gzip,deflate Now i am adding headers to js file by inlcuding it in my php file. ?php ob_start( 'ob_gzhandler' ); echo

[jQuery] Re: How to gzip a javascript file | I am not able to find.

2008-10-20 Thread leveille
Do you have a link so that we can take a closer look at the response headers associated with file requests? In the past on shared hosts I had to go the route of ob_start and ob_end_flush. This isn't terrible if you are using includes for your header and footer. At this point, assuming you have

[jQuery] jQuery Uploader Flash player 10 fix

2008-10-20 Thread Gilles (Webunity)
Guys; A lot (8) people have allready asked me if i was going to fix the mess Adobe made and my answer is yes, i am working on it. This post is to assure you that the jQuery Flash based uploader i wrote in 2006 has been revived. The project will no longer be based on swfupload, since i added way

[jQuery] Re: How To Create Array(s) in jQuery?

2008-10-20 Thread Michael Geary
What makes you say that?  An array is an array is an array.  jQuery doesn't change how they work or how you create them. Yep. An array is an Array. But in my case while working with jQuery the array data is not executing properly and the same is working fine in typical javascript. var

[jQuery] Table Sorter - Freeze Panes (like Excel)

2008-10-20 Thread Devin
Hi. I know there are solutions that work for freezing the TH or first row of a table. However I can't seem to find one that also has been tested with table sorter. Suggestions? Thanks, D.

[jQuery] Disabling Textarea, Select

2008-10-20 Thread Justin Kozuch
Hi, I've hit a bit of a snag in some code I've repurposed for a form I'm creating: $(document).ready(function() { var termsagree = $(#termsagree); var inital = termsagree.is(:checked); var terms = $(#contractualreqs)[inital ? removeClass : addClass](gray); var termsInputs =

[jQuery] Re: [validate] Trouble using rules( add, rules ) as well as setting attribute for range validations

2008-10-20 Thread lightglitch
I have made a patch for my app to the rules function to support custom messages: This is the new function, would be nice to have something similar to this. rules: function(command, argument) { var element = this[0]; if (command) {

[jQuery] Faceted navigation Solution Ideas

2008-10-20 Thread zartoop
I want a starting point for a faceted navigation system, using jquery, similar to that at http://www.indeed.com/jobs?q=programmerl= for example Can someone please point me in the right direction ... Thanks for any help

[jQuery] Re: Linkselect Plug-in Released...

2008-10-20 Thread Dan Switzer
On Mon, Oct 20, 2008 at 11:22 AM, Ca-Phun Ung [EMAIL PROTECTED] wrote: Very cool! Excellent work! I like how you are able to change the entire look purely through CSS. It also looks very adaptable. Thanks for sharing. :) Thanks!

[jQuery] Re: Disabling Textarea, Select

2008-10-20 Thread Justin Kozuch
Nevermind I figured it out. - Justin On Oct 20, 2:20 pm, Justin Kozuch [EMAIL PROTECTED] wrote: Hi, I've hit a bit of a snag in some code I've repurposed for a form I'm creating: $(document).ready(function() { var termsagree = $(#termsagree); var inital =

[jQuery] Re: Faceted navigation Solution Ideas

2008-10-20 Thread Mauricio (Maujor) Samy Silva
Have a look at: http://jquery.bassistance.de/accordion/demo/ Mauricio I want a starting point for a faceted navigation system, using jquery, similar to that at http://www.indeed.com/jobs?q=programmerl= for example Can someone please point me in the right direction ... Thanks for any help

[jQuery] Re: Disabling jQuery on printing?

2008-10-20 Thread iantresman
http://www.hiya4kids.co.uk/girls.htm This page shows the maphilighting in action. When I click Print Preview, the large page images (showing the toys) disappears showing just the super-imposed text. If I rem out the $('.map').maphilight(); statement, and then print preview, the images appear

[jQuery] Re: jcarousellite vertical issues

2008-10-20 Thread 700lbGorilla
Just trying to bump this thread a little, see if anyone can help, still having problems

[jQuery] Re: How To Create Array(s) in jQuery?

2008-10-20 Thread loveprone
Thank you all for your quick support. The error was caused due to incorrect markup in the user script jQuery file and now it's working fine. enjoy :)

[jQuery] Re: Combining jQuery and jQuery UI

2008-10-20 Thread c.barr
They already have the semicolons straight from jQuery, so no changes were needed. Any other suggestions? On Oct 16, 5:16 pm, Mike Alsup [EMAIL PROTECTED] wrote: I'd like to combine and compress my jQuery and jQuery UI files into a single minified file, but I've noticed that every time I do

[jQuery] Re: pngFix and display:none

2008-10-20 Thread yabdab
The problem is, they are never shown. Fancy Box takes the html from the original hidden div, then presents that to the user. I cannot figure out a way to apply the fix to this png on-the-fly??? :-( On Oct 20, 1:22 pm, Isaak Malik [EMAIL PROTECTED] wrote: You just need to apply the pngfix to

[jQuery] Re: How to address JSON data once returned with getJSON ?

2008-10-20 Thread smallcog
Absolutely Mike, thats the problem, a really newbie mistake. Thanks / Colm

[jQuery] Re: [validate] Validation max number of checkboxes

2008-10-20 Thread [EMAIL PROTECTED]
Works beautifully -- Thanks!

[jQuery] Re: pngFix and display:none

2008-10-20 Thread Isaak Malik
I've had a look at the Fancy Box and it seems the pngfix seems to do its job. It would be helpful if you provided us with a demo where it's not working. Also, you might want to give this pngfix hack a try: http://jquery.khurshid.com/ifixpng.php On Mon, Oct 20, 2008 at 10:37 PM, yabdab [EMAIL

[jQuery] Re: Plugins website in IE7

2008-10-20 Thread PatricioTarantino
I have the same problem, I have a div that shows with show() and the links inside are unclickable in IE7 On Oct 20, 6:51 am, Adam Frame [EMAIL PROTECTED] wrote: Is it just me or is the plugins page (plugins.jquery.com) a little broke in IE7? The footer appears to ride up the page and makes all

[jQuery] Re: ANNOUNCE: Context Menu Plugin v1.0 - new plugin with themes, highly extensible

2008-10-20 Thread Alexandre Plennevaux
Matt, you rule ! On Mon, Oct 20, 2008 at 6:11 PM, Matt Kruse [EMAIL PROTECTED] wrote: I've just released version 1.0 of my Context Menu plugin: http://plugins.jquery.com/project/cmenu ( plugin home: http://www.javascripttoolbox.com/lib/contextmenu/ ) Here is the description from the plugin

[jQuery] load dynamic content into myobj

2008-10-20 Thread Flavio333
Hello, what I am trying to do is this... I have a link on a page when i click the link i want it to load Page2.php?+... into myobj. here is some of the code i was working with... hope someone can help... Thank you. script $(document).ready(function(){ $(#generate2).click(function(){

[jQuery] BUG: oversized overlay in IE web browsers ( demo included )

2008-10-20 Thread tallvanilla
Hello. I found a minor bug that affects overlay in IE web browsers (at least in IE6). Please take a look at this very simple demo: http://74.205.76.81/blockuitest/ In IE(6), the overlay is a bit taller than the browser window, so a scrollbar appears on the right whenever the overlay is

[jQuery] Help with Superfish

2008-10-20 Thread sireb
Hello, As suggested on the superfish homepage (http://users.tpg.com.au/ j_birch/plugins/superfish/#download) i am posting here with a problem i am experiencing its probably user error, but i cant seem to get it to work properly. The problem is that when users hover of the menu buttons and a

[jQuery] Good MVC tutorial?

2008-10-20 Thread greenie2600
Hi all - I'm looking for a good tutorial on the MVC pattern in the context of jQuery AJAX apps. (I'm using a PHP back-end, if that matters.) I understand basic design patterns such as the singleton, the strategy pattern, etc., but I've never really grokked MVC. From what I know of it, it seems

[jQuery] addClass / removeClass Multiple Divs

2008-10-20 Thread betweenbrain
Hi all, First off, I am a bit new to jQuery so please excuse any newbie-ness. Thank you all for the great group. It is extremely informative and I hope to be able to give back soon. I have been working with multiple jQuery scripts at

[jQuery] JQuery Cycle + lazyload

2008-10-20 Thread TResudek
I have a photo gallery using cycle and it works well. I am running into an issue with slow connections because I have a gallery with 60+ large images in it. I figured I could use lazyload to remedy the problem and have the images only load when they are called(or next to be called). I can't seem

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-20 Thread Karl Rudd
Oh, you're working with Flash... hmmm that's probably the reason. Getting events from object or embed nodes can be... tricky, in my very limited experience. My suggestion is that you drop the SIFR menu items and use background images. Either that or you'll have to somehow tap into the hover

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-20 Thread MorningZ
I wouldn't put Flash as the single cause for this... I have a table of ~ 30 rows that i tried to wire in a hover event which colored/de-colored the row the user was over so it was obvious what row they were one moving the mouse in and out very quickly made the out event not fire resulting

[jQuery] Re: ui.tabs + cycle + WebKit = not working

2008-10-20 Thread psurrena
I guess this leads to the question... When the tabs load an external page as the tab content using ajax, does the external page inherit all the js files from the tab page? On Oct 20, 7:22 pm, Mike Alsup [EMAIL PROTECTED] wrote: http://www.petersurrena.com/ The first project that loads is a

[jQuery] Re: Good MVC tutorial?

2008-10-20 Thread Sam Sherlock
Assuming that you are using Cakephp (is there any other MVC framework - my personal bias coming to the fore) Some older cake/ajax tutorials are based on protoype but can easily be adapted Marc Grabanski (part of jQuery UI team) The CakePHP core is moving to jQuery. I'll be helping on that

[jQuery] Re: Help with Superfish

2008-10-20 Thread Joel Birch
Hello, From a scan of your CSS it seems that you are applying the images to the anchor elements. However, when you are hovering within a submenu, the associated parent anchor is no longer being hovered, so the hover image is lost. Try applying the images to the li elements and leave the anchor

[jQuery] Atribute selector with squared brackets

2008-10-20 Thread Ariel Flesler
We got a ticket about how to select elements by an attribute with brackets. I replied with the common link to the FAQ and the reporter replied that the example in the docs doesn't work. I tried that myself, and indeed, that didn't work. http://dev.jquery.com/ticket/3443 $('[name=foo[bar]]');

[jQuery] Re: JQuery Cycle + lazyload

2008-10-20 Thread Mike Alsup
I am using cycle for a slideshow and it works great. The problem is that I have a gallery with about 60 large images and it can be a real pain for slow connections. I figured using lazyload would be a good option so that the images only load as needed. I can't seem to get cycle and lazyload

[jQuery] Re: ui.tabs + cycle + WebKit = not working

2008-10-20 Thread Mike Alsup
I guess this leads to the question... When the tabs load an external page as the tab content using ajax, does the external page inherit all the js files from the tab page? Yes, but that's not what's happening on your site. Clicking on those links is navigating to a different page, not

[jQuery] Web page navigation question....

2008-10-20 Thread Stever
Hello, I am new to Javascript and Jquery and I have a question on a web page I am building. I have an interactive form where I have two columns, one column holds the form the second holds the results. When the user comes to the page, the form and the result window are blank. The form allows

[jQuery] Re: Group validation - validate per page in one form.

2008-10-20 Thread ovalsquare
Perhaps I could use the depends parameter (http://dev.jquery.com/ ticket/2456) in order to check what page I'm on and therefore validate accordingly for only the visible page. There are several other options I've thought through (including actually going with the real estate example above, which

[jQuery] Re: ANNOUNCE: Context Menu Plugin v1.0 - new plugin with themes, highly extensible

2008-10-20 Thread MindstormsKid
VERY nice! One thing... You might want to disable the normal browser context menu on the jquery context menu... (as in right-clicking one of the context menu options) Matt Kruse-3 wrote: I've just released version 1.0 of my Context Menu plugin: http://plugins.jquery.com/project/cmenu (

[jQuery] Treeview - close/hide list item when list item/submenu item is clicked

2008-10-20 Thread caydieu
Hi, I really enjoy this plugin, great job to all the folks who have made it possible. I'm using treeview to have as an FAQ page. Right now, to close out a submenu, the user has to reclick the parent menu. I would like to add a feature where the viewer can click the an li item/submenu (in this

  1   2   >