[jQuery] wrap isn't working, or I'm doing it wrong?

2008-10-27 Thread Geuis
There's a page of some damn tables that I'm trying to redo dynamically. Its a page I don't have control over so this code is running from a bookmarklet in my browser. I'm trying to sample out the content I want and re-wrap it in an an unordered list. I can't get the .wrap function to work. The

[jQuery] Plugin, passing user defined default selector not working

2008-10-27 Thread Nic Hubbard
I have a small plugin that creates an iframe, and lets links open within the iframe. The default is to append the iframe to the body, but I wanted the user to be able to pass in an ID and have the iframe append to that. Sounded easy enough, but it is not working for some reason.

[jQuery] animated image swap

2008-10-27 Thread w1ntermut3
I'm trying to animate a simple image swap but it's not quite working right. Details below, here's my code thus far: $('#zoom_control a').click(function(){ var oImg = $('.current_page').find('img'); oImg.animate({opacity: 0}, 1000, '',function(){

[jQuery] Re: Plugin, passing user defined default selector not working

2008-10-27 Thread BB
You have to extend the defaults before you are doing something with these: $.fn.testFrame = function(options) { var defaults = { urlSuffix: '', iframe: 'body' }; options = $.extend(defaults, options); On 27 Oct, 07:57, Nic Hubbard [EMAIL PROTECTED] wrote: I

[jQuery] Lightbox Plugin (balupton edition)

2008-10-27 Thread Geir
Hi! Thanks to your good work I'm using jQuery, with the Lightbox Plugin (balupton edition). Very nice in deed. However I have some problems: * Safari 3: png-pictures is not showing * IE7: - $.Lightbox.construct doesn't seem to work (it's showing linkback) - The rendering seems a little

[jQuery] Re: jquery.validate.js remote validation issue

2008-10-27 Thread Jörn Zaefferer
The remote validation is supposed to do nothing until the ajax result is returned. Its probably a bug, though a testpage would help a lot to confirm that. Jörn On Mon, Oct 27, 2008 at 12:19 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have a registration form that I'm trying to validate

[jQuery] Re: jQuery Treeview 1.4 by Joern Zaefferer

2008-10-27 Thread Jörn Zaefferer
Can't find anything obvious. Could you provide a stripped down testpage that shows the issue but contains only a very basic tree and nothing else? Jörn On Thu, Oct 23, 2008 at 10:29 PM, Cruizer [EMAIL PROTECTED] wrote: I am using this menu for a clients website, and I am having some problems

[jQuery] Re: Validate. Not working with Radio input

2008-10-27 Thread Jörn Zaefferer
Can't reproduce the problem: http://jsbin.com/iwofu/edit Jörn On Sun, Oct 26, 2008 at 6:32 PM, shapper [EMAIL PROTECTED] wrote: Please, anyone? On Oct 24, 6:00 pm, shapper [EMAIL PROTECTED] wrote: Hello, I am trying to validate a form with radio inputs. I want to the form to be submitted

[jQuery] Re: Lightbox Plugin (balupton edition)

2008-10-27 Thread Geir
Ok, found out about the png-problems in Safari. I'd used some national characters in the picture-names. It didn't work in IE either. Fixed However the linkback problem in IE remains..

[jQuery] jquery tabs on ajaxed content

2008-10-27 Thread gryzzly
I have this markup structure: div id=ajax_content h3Some Title/h3 span class=phone_holder...some content.../span span class=phone_holder...some content.../span more spans like this (around 100, depends on particular ajax page I am loading, might change due to the content

[jQuery] hide() not working when disabling CSS

2008-10-27 Thread 5h4rk
Hi, I have p class=jsoffPlease turn Javascript on to view the content./p and $('p.jsoff').hide(); When I turn CSS off using the Web Developer Extension for Firefox and Javascript on, the message is somehow not hidden. I'm not sure if this is the problem, but Instead of style=display:none;,

[jQuery] Custom plugin

2008-10-27 Thread jcnconnect
Hi, im trying to make a custom jquery plugin but i need some help. Here is the function that i am trying to do, but i dont want to repeat this a million times through out the website. $('#MyDiv').mouseover(function() { $('#MyDiv').animate({height: 100, width:100},

[jQuery] How to create an infinite loop?

2008-10-27 Thread gattu_marrudu
Hi, I am new to jQuery and I would like to create a simple animation of a div scrolling in an infinite loop. When the div scrolls to the top, it is shifted to the bottom and starts over. I based my function on one found on the jQuery API reference: http://docs.jquery.com/Effects/queue

[jQuery] tablesorter and mousehoover

2008-10-27 Thread Alfredo Alessandrini
Hi, I've setup tablesorter and tablesorter.pager for a table of about 100 rows, it's work fine..but if I add a function for create a class hoover (on mouseover), the hoover effect work fine only at first ten rows showed at first page. If I change page the class hoover disappear.

[jQuery] I think this is a binding issue

2008-10-27 Thread Gipper
Hey all, So my problem is when i load new content in i loss functionality to my site. here's a link to the page, http://selectreselect.com/sal/ If you click on A then click on Project 1 it will load in new content to the top. And the top is suppose to be able to scroll to the next image or

[jQuery] datePicker with rjs (on rails)

2008-10-27 Thread macsig
Hello folks, I'm struggling with datePicker when I need to load it within a RJS file. Basically I have a drop-down menu and according to the selected value I display some form fields (rendering a partial for selected value within a RJS file); one of those has to be the datepicker but I can't

[jQuery] Block cannot work fine in FF3 on Ubuntu

2008-10-27 Thread xzhang
Hi, I just started using $.blockUI last weekend. It worked fine in FF3 on Windows XP. But when I tested it in FF3 on Ubuntu, the overlay layer (by default it's gray and transparent, covers the whole page) did not show up. I also tested the official demos in the same environment and got the same

[jQuery] Re: Block cannot work fine in FF3 on Ubuntu

2008-10-27 Thread Mike Alsup
I just started using $.blockUI last weekend. It worked fine in FF3 on Windows XP. But when I tested it in FF3 on Ubuntu, the overlay layer (by default it's gray and transparent, covers the whole page) did not show up. I also tested the official demos in the same environment and got the same

[jQuery] Re: I think this is a binding issue

2008-10-27 Thread Mike Alsup
If you click on A then click on Project 1 it will load in new content to the top.  And the top is suppose to be able to scroll to the next image or back to the previous one if you click on the next and back links. like this example here http://selectreselect.com/sal/project1.html Can

[jQuery] Re: jquery.validate.js remote validation issue

2008-10-27 Thread [EMAIL PROTECTED]
Naturally I can't get it to occur on a pure test page, which contains just the form and the required javascript. http://www.rebeccamurphey.com/stuff/ds/form.html Any suggestions where to look for what might be causing this? One suspicion I have is that there's another input element on the page

[jQuery] Re: [validate] problems with invalid-form.validate and remote rules

2008-10-27 Thread Àlex Corretgé
Hi Jörn, thanks for the quick answer. I fill the form with database data. If the data controled with a remote rule is erroneous and I never focused the field, when I submit the form, the form is cancelled but errorMap lenght is zero. the seccond time that I submit the form, errorMap has the

[jQuery] Background image position?!

2008-10-27 Thread PaulC
I have a pop up div on our sites home page. The content changes based on the menu link the user clicked. A triangle tab should then move to reside between the clicked menu item and the popUp. This works fine of the dev server, but not on our live server (http:// www.pro-bel.co.uk/) We've

[jQuery] Re: How to create an infinite loop?

2008-10-27 Thread pete higgins
your onend callback is being executed immediately (with the ()'s). you likely want: $(...).animate({ props }, 2000, linear, function(){ scroll_list(h); }); to pass an anonymous function that will execute later (2000ms). Regards Peter Higgins On Mon, Oct 27, 2008 at 6:01 AM,

[jQuery] Re: I think this is a binding issue

2008-10-27 Thread Ariel Flesler
I wonder why no one's reading previous threads instead of just posting right away. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 27, 9:11 am, Mike Alsup [EMAIL PROTECTED] wrote: If you click on A then click on Project 1 it will load in new content to the top.  And the top is suppose

[jQuery] Re: Problem with JQuery - Ajax

2008-10-27 Thread Tallu
Java script code. $(document).ready(function(){ alert(Document is Ready); $(form#FormID).submit(function(){ alert(Form is submitted); $.post(process.php,{keyword:$(#keyword).val()},function(data) { alert(Data Loaded: +

[jQuery] Background image position?!

2008-10-27 Thread Paul Cripps
I have a pop up div on our sites home page. The content changes based on the menu link the user clicked. A triangle tab should then move to reside between the clicked menu item and the popUp. This works fine of the dev server, but not on our live server (http://www.pro-bel.co.uk/) We've

[jQuery] Re: AJAX JSON call and caching?

2008-10-27 Thread MarcDK
It's a php file which outputs a json file. What do I hav to change? On 25 Okt., 16:02, Mike Alsup [EMAIL PROTECTED] wrote: Ok, but it does not really work: http://www.marctv.de/#moblog_teaser What's the matter? Is the server sending cache-control and last-modified headers?

[jQuery] Re: jQuery.getScript problems on IE 7

2008-10-27 Thread Alexsandro_xpt
Hellow? On 24 out, 15:55, Alexsandro_xpt [EMAIL PROTECTED] wrote: So.. get this examplehttp://rapidshare.com/files/157173826/getscripterro.zip.html Download that e open getscripterro.htm in IE 6+, you will see error. And you try in FF it's will work fine. About what you told me about

[jQuery] Re: tablesorter and mousehoover

2008-10-27 Thread tlphipps
I think you should investigate event delegation for your TR hover. Sounds like the hover is attached to only the visible rows, so when you navigate the table to show other rows, the hover event was never bound to them. You should be able to use event delegation to bind the hover event to the

[jQuery] Re: please check website before launch

2008-10-27 Thread Alexandre Plennevaux
Mike, i understand your argument but it's a target audience that is very specific apparently: art directors and designers, computer savvy, liking trendy stuff, with good recent connection and having the latest wiz in their hand. Nice idea Ed! On Mon, Oct 27, 2008 at 2:11 PM, Ed Finkler [EMAIL

[jQuery] Re: mixing jQuery with regular JavaScript

2008-10-27 Thread Eric P
On Fri, Oct 24, 2008 at 9:54 PM, Ryura [EMAIL PROTECTED] wrote: Alternatively, script $(function(){ window.test = function(){ console.log('hi')} }); /script Thanks, Mike and Ryura. That's what I needed to hear. For some odd reason I had it pounded in my head that everything

[jQuery] Re: jQuery Treeview 1.4 by Joern Zaefferer

2008-10-27 Thread Cruizer
Thanks for looking into this. Here is what you requested. I took your original demo page, removed demos 1 3 and modified Demo 2. I added collapsed: true and changed the persist to location in the demo.js file. Folder 1 has been linked to index.html, Folder 2 has been linked to # and Folder 3

[jQuery] Autocomplete: Show full list before start typing

2008-10-27 Thread Mello
Hi all I've a filed that use the Ui.autocomplete plugin to show the list of possibile values, this list is shown when i start typing but i need to view the full list before start typing. This list is small (max 15 items) so there's no performance issues. There's a method to do this? Thank you.

[jQuery] Problem with layer after 2.6 upgrade

2008-10-27 Thread Schmitt
Hi, I just upgraded from jquery 1.1.3 to 1.2.6 and now have the following problem in IE 7. (Due to the random nature of the problem I am only 95% sure that it does not also appear in IE 6.) We have a function where upon clicking a small picture, a large picture is shown in a floating layer.

[jQuery] Re: Plugin, passing user defined default selector not working

2008-10-27 Thread Nic Hubbard
Hey thanks! I should have realized that! Something so simple, yet caused big problems. I appreciate the help! On Oct 27, 1:04 am, BB [EMAIL PROTECTED] wrote: You have to extend the defaults before you are doing something with these: $.fn.testFrame = function(options) {     var defaults =

[jQuery] Re: jquery.validate.js remote validation issue

2008-10-27 Thread Jörn Zaefferer
Without a testpage that contains the issue its really hard to propose a solution. The problem with same-name fields in different forms is how error labels are created: If the element has no id, the name is used in the for-attribute of the label. This is likely to cause the issue. If you can't

[jQuery] Re: Plugin, passing user defined default selector not working

2008-10-27 Thread urlee net
Hello, I am starting a very new service: www.urlee.net www.urlee.net www.urlee.net And with Urlee.net you could create: www.yourname.urlee.net www.yourname.urlee.net www.yourname.urlee.net And it is for free, it is a FREE REDIRECTION SERVICE! Like CJB, you could change verylong.url

[jQuery] Re: Problem with layer after 2.6 upgrade

2008-10-27 Thread urlee net
Hello, I am starting a very new service: www.urlee.net www.urlee.net www.urlee.net And with Urlee.net you could create: www.yourname.urlee.net www.yourname.urlee.net www.yourname.urlee.net And it is for free, it is a FREE REDIRECTION SERVICE! Like CJB, you could change verylong.url

[jQuery] Re: Autocomplete: Show full list before start typing

2008-10-27 Thread urlee net
Hello, I am starting a very new service: www.urlee.net www.urlee.net www.urlee.net And with Urlee.net you could create: www.yourname.urlee.net www.yourname.urlee.net www.yourname.urlee.net And it is for free, it is a FREE REDIRECTION SERVICE! Like CJB, you could change verylong.url

[jQuery] Re: jQuery Treeview 1.4 by Joern Zaefferer

2008-10-27 Thread urlee net
Hello, I am starting a very new service: www.urlee.net www.urlee.net www.urlee.net And with Urlee.net you could create: www.yourname.urlee.net www.yourname.urlee.net www.yourname.urlee.net And it is for free, it is a FREE REDIRECTION SERVICE! Like CJB, you could change verylong.url

[jQuery] Re: jquery.validate.js remote validation issue

2008-10-27 Thread urlee net
Hello, I am starting a very new service: www.urlee.net www.urlee.net www.urlee.net And with Urlee.net you could create: www.yourname.urlee.net www.yourname.urlee.net www.yourname.urlee.net And it is for free, it is a FREE REDIRECTION SERVICE! Like CJB, you could change verylong.url

[jQuery] Re: Use JSON from .post

2008-10-27 Thread Rogers
This is closely related to the problem I am having. And the tip about console.log was great. However: I have an object created using json_encode and via the console.log entry as suggested, I can see that it is correct. I have a backend program that I'm wanting to pass this object to, so

[jQuery] Re: Autocomplete: Show full list before start typing

2008-10-27 Thread mbraybrook
Can you tell us how you currently initialize the list? Perhaps a link or an extract of code. It depends on how you populate the list as to how you would show all items. I can't personally see a built in function of the AutoComplete plugin that supoprts this - hence it would likely be that you

[jQuery] Re: please check website before launch

2008-10-27 Thread Ed Finkler
There's something to be said for interesting, experientially-focused interfaces, depending on the purpose of the site. If the client is primarily trying to sell an aesthetic, this could be very useful. As a compromise, you might consider some sort of help function. Maybe a [?] button that pops

[jQuery] selected = selected in firefox issue

2008-10-27 Thread matt
I have a script I'm working on here: http://zurnet.com/test/ It takes a select box, and coverts it to a list item for styling. The problem I'm running into is that if an option value has selected=selected, I want to apply it to the list item. Now when I run the each statement and loop through,

[jQuery] TreeView serialize

2008-10-27 Thread Mhissen
Hello, I created a dynamic TreeView in my page. I wish thereafter back up this TreeView in a data structure. Someone could help me..? Thank you.

[jQuery] Re: Traversing Question with Parent and Children

2008-10-27 Thread mbraybrook
Why not provide the solution to make the post a little more useful? :P On Oct 25, 7:39 pm, Jason [EMAIL PROTECTED] wrote: Resolved. On Oct 25, 11:51 am, Jason [EMAIL PROTECTED] wrote: I have HTML similar to the following: div class=asdf id=ghjk a href=# class=linkred border/a /div

[jQuery] Re: Validate. Not working with Radio input

2008-10-27 Thread shapper
I found it! I had the form inside a div both with same id ... Thanks, Miguel On Oct 27, 8:48 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: Can't reproduce the problem:http://jsbin.com/iwofu/edit Jörn On Sun, Oct 26, 2008 at 6:32 PM, shapper [EMAIL PROTECTED] wrote: Please, anyone? On

[jQuery] Re: drag drop, and store dropped location

2008-10-27 Thread mbraybrook
The jQuery UI has a function called droppable, which can be applied to any jQuery object $(#id).Droppable. (documentation@ http://docs.jquery.com/UI/Droppables). This returns through the drop parameter the object which was dropped on, as in: drop: function(ev, ui) {

[jQuery] Re: pagination solution

2008-10-27 Thread Rene Veerman
'plugin' usually refers to a javascript thing. you need php aswell and since db definitions vary wildly, it's hard to create something standarized.. i dont know of any components/plugins that do this and are easy to configure.. i did write something on this topic, which you can find

[jQuery] Re: Problem with JQuery - Ajax

2008-10-27 Thread Mike Alsup
    $(document).ready(function(){         alert(Document is Ready);         $(form#FormID).submit(function(){                 alert(Form is submitted);                 $.post(process.php,{keyword:$(#keyword).val()},function(data) {                         alert(Data Loaded: + data);    

[jQuery] Jcrop minSize

2008-10-27 Thread R0bb13
I'm using Jcrop to select a 1:1 ratio non-resible area. The idea is to move the area but not to resize it. To do this I use the following code: $('img class=currentimage src='myimage.jpg' width=400 height=480 /').Jcrop({ setSelect: [ 0, 0, 400, 400 ], aspectRatio: 1, minSize: [400,400], maxSize:

[jQuery] Re: [validate] problems with invalid-form.validate and remote rules

2008-10-27 Thread Jörn Zaefferer
Can you provide a running example that I can look at? The more simplified it is, the easier to debug. Jörn On Mon, Oct 27, 2008 at 12:39 PM, Àlex Corretgé [EMAIL PROTECTED] wrote: Hi Jörn, thanks for the quick answer. I fill the form with database data. If the data controled with a

[jQuery] change speed of animation during runtime

2008-10-27 Thread sissi
Hi folks I got an animation that looks somewhat like this: $('#pointer').animate({ left: activeItem.accumulatedWidth + 'px' }, tempo, ' ' , function () {$(this).playShow(times-1)}) now I've added a beautiful ui.slider and want to give the user the possibility to speed up or slow down the

[jQuery] pagination solution

2008-10-27 Thread bdee1
I am looking for a simple solution to add pagination to some reports i have built using ASP and jquery. the problem is that the reports are returning so much data that the script(s) are timing out. SO based on that - i assume i woudl need to have some kind of ajax based pagination so that the

[jQuery] testing - please ignore

2008-10-27 Thread Andy Matthews
asdsad

[jQuery] Re: How to create an infinite loop?

2008-10-27 Thread gattu_marrudu
function scroll_list(h) { $(#sl1).marginTop = 0; $(#sl1).animate( {marginTop: -h}, 2, linear, function () {scroll_list(h);} ); }

[jQuery] A better way to refill form values?

2008-10-27 Thread 703designs
Here's what I have right now: $(document).ready(function() { $(form input:text).focus(function() { this.oldvalue = $(this).attr(value); $(this).attr(value, ); }).blur(function() { $(this).attr(value, this.oldvalue) }) }) But I'm sure it could be written

[jQuery] Re: pagination solution

2008-10-27 Thread Andy Matthews
The OP said that he was using ASP. Depending on what data you're showing, the tablesorter plugin might work for you. It's got pagination built in if I recall. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rene Veerman Sent: Monday,

[jQuery] Re: Background image position?!

2008-10-27 Thread Andy Matthews
Works fine for me in Chrome. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Cripps Sent: Monday, October 27, 2008 7:45 AM To: jquery-en@googlegroups.com Subject: [jQuery] Background image position?! I have a pop up div on our

[jQuery] Re: More efficient animation for multiple elements

2008-10-27 Thread c.barr
Scratch that, madesome minor tweaks, new version is here: http://jsbin.com/isive I also had to check for IE and change the easing method since that one looked a bit jerky in IE for some reason. On Oct 27, 2:00 pm, c.barr [EMAIL PROTECTED] wrote: Thanks again guys.  I ended up using

[jQuery] Re: datePicker with rjs (on rails)

2008-10-27 Thread macsig
UP, Please, any idea about that ? THANK YOU On Oct 26, 6:38 pm, macsig [EMAIL PROTECTED] wrote: Hello folks, I'm struggling with datePicker when I need to load it within a RJS file. Basically I have a drop-down menu and according to the selected value I display some form fields (rendering

[jQuery] Upload

2008-10-27 Thread Jerms25
I am trying to scope out a project for my company. As a demo of our capability we want users to be able to upload photos to our site and then be able to submit them to us for processing. I would like to be able to display the image when they upload and then display a copy of the image after it

[jQuery] jcarousel troubles

2008-10-27 Thread bally
jquery-1.2.6 jcarousel-0.2.3 Firefox-2.0.0.14 I'm trying to get jcarousel working and have run out of ideas. Perhaps someone can toss me a clue of where else to look. html: ul id=gallery class=jcarousel-skin-cb liimg src=/gallery/01.jpg alt= width=150 height=150 // li liimg

[jQuery] jCarousel -help with new skin

2008-10-27 Thread Black2Night
I'm creating a new theme for the jCarousel component that I'll be using for my web site and the dimension for this component will be: width:485px , height:161px including the two arrows and what i want is to have 3 items per cycle each having the a dimension of 140X100 (width X height) with 5px

[jQuery] validation - how do I validate a hidden value against a radio box selection?

2008-10-27 Thread spellingcity
Hey All, Looking for some help... I have a form with 2 radio buttons. If one is selected, than the user has to make another selection which puts data into a hidden field on the form. I the second button is selected, no data is necessary in the hidden field. I can't figure out the best way to

[jQuery] Re: jquery tabs on ajaxed content

2008-10-27 Thread gryzzly
anyone? On Oct 27, 11:27 am, gryzzly [EMAIL PROTECTED] wrote: I have this markup structure: div id=ajax_content     h3Some Title/h3     span class=phone_holder...some content.../span     span class=phone_holder...some content.../span     more spans like this (around 100, depends on

[jQuery] Re: More efficient animation for multiple elements

2008-10-27 Thread c.barr
Thanks again guys. I ended up using ricardobeat's version since the code actually fit my needs better - I needed it to go to exact sizes, not to calculate the size on the fly. I removed the plugin functionality since I'm only using it once, and when I posted my example without one imporant

[jQuery] Re: please check website before launch

2008-10-27 Thread [EMAIL PROTECTED]
I tried loading the site several times and it timed out after loading 88 or 89 images. I was left with a non-functioning web page. As a veteran software developer, I can assure you that there are compromises you can make that would make the website usable and still deliver the vision of the

[jQuery] Re: please check website before launch

2008-10-27 Thread Alexandre Plennevaux
@-b: given the comments above, i intend to implement this background image loading. thanks for taking time to review the website and the comment! On Mon, Oct 27, 2008 at 9:34 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I tried loading the site several times and it timed out after loading

[jQuery] ajax in included content by ajax

2008-10-27 Thread [EMAIL PROTECTED]
hello I have some small problem and I don't know how to fix it. I load content using this simple function function loadContent(id) { $(#content).load(controller.php?module=+id+); } into div id=contenthere goes data/div but if data contains some part of

[jQuery] jQuery Cycle - onBefore? onAfter?

2008-10-27 Thread Maddlake
I am using this plugin for my portfolio site. I use it quite often, but am stumped and hoping someone can help. Each slide is a div which contains an image + a reflection (using reflection.js - it wraps the image and its reflection in a div), and then a div with a description. Here is the URL-

[jQuery] Modify nested, un-ordered list

2008-10-27 Thread mtz
I have a nested, un-ordered list, representing a table-of-contents, that I want to modify. Specifically, increase or decrease the indent level of an entry. I have tried to use the family of functions append, prepend, before, after and warp, but I am not successful yet, and I hope the group can

[jQuery] Selecting an element whose ID is in a variable

2008-10-27 Thread fredriley
This has got to be a FAQ, but I can't see it in the FAQ so here goes, and apologies if it's a stupid question but I'm a relative newbie to jQuery: How can I select an element whose id is stored in a constructed string variable? What I mean is something like the following. In a document I've got

[jQuery] jquery load() doesn'y work on IE7

2008-10-27 Thread maxi
Hi, I have a problem with the load() function to load an html file on a div. It works in every browser (even on IE6), but not in IE7. Somebody knows a fix? Thanks

[jQuery] Re: Selecting an element whose ID is in a variable

2008-10-27 Thread Richard D. Worth
$(# + fieldset_id) - Richard On Mon, Oct 27, 2008 at 4:13 PM, fredriley [EMAIL PROTECTED] wrote: This has got to be a FAQ, but I can't see it in the FAQ so here goes, and apologies if it's a stupid question but I'm a relative newbie to jQuery: How can I select an element whose id is stored

[jQuery] blockUi and Jquery animate function problem (IE7 of course)

2008-10-27 Thread asiarlis
I use blogUi plug in for a long time know and everything works fine. Excellent job. Recently i decide to use the animate function of jQuery to pop up an absolute position it window that holds form data. The problem is that when i use the animate function to pop up the window the blockUi in

[jQuery] Re: Selecting an element whose ID is in a variable

2008-10-27 Thread Josh Nathanson
You want this: $(# + fieldset_id); Don't feel bad, that trips up a lot of people at first (myself included). Basically the selector is just a string, so you can use the usual JS string methods to get what you need. -- Josh - Original Message - From: fredriley [EMAIL PROTECTED]

[jQuery] Validate. Can validate plugin do this?

2008-10-27 Thread shapper
Hello, I have a form with 20 elements a Submit Button and a Validate. It works fine ... Inside this form I added the following: - a select, an input and 3 checkboxes all with same name; - a button named Add; - an ordered list. When the Add button is clicked the values of the select,

[jQuery] Add label

2008-10-27 Thread shapper
Hello, I need to check if an input, #Message, value is empty. If it is I need to add the following after it: label for=Message generated=true class=WelcomeWelcome Text/ label How can I do this? Thanks, Miguel

[jQuery] Re: jQuery.getScript problems on IE 7

2008-10-27 Thread Karl Rudd
Sorry. I've been busy. Will try and look at it soon. Karl Rudd On Tue, Oct 28, 2008 at 12:46 AM, Alexsandro_xpt [EMAIL PROTECTED] wrote: Hellow? On 24 out, 15:55, Alexsandro_xpt [EMAIL PROTECTED] wrote: So.. get this examplehttp://rapidshare.com/files/157173826/getscripterro.zip.html

[jQuery] SuperFish with supersubs problem

2008-10-27 Thread Karol Rybak
Hello, I have used superfish supersubs on that website http://www.atut.lublin.pl/ it works great in ie, however it's got problems in firefox 3. When i first enter the site (empty cache) measuring does not work well and submenu MIERZONE GAZY is much too wide. When I enter a different page (cache

[jQuery] Re: SuperFish with supersubs problem

2008-10-27 Thread Joel Birch
Hello, My suggestion is to try putting the Superfish CSS before the script tags rather than after them in the source code. Joel Birch.

[jQuery] Re: Validate. Can validate plugin do this?

2008-10-27 Thread Jörn Zaefferer
Whats supposed to happen when you click the add button? Jörn On Mon, Oct 27, 2008 at 10:54 PM, shapper [EMAIL PROTECTED] wrote: Hello, I have a form with 20 elements a Submit Button and a Validate. It works fine ... Inside this form I added the following: - a select, an input and 3

[jQuery] Re: hide() not working when disabling CSS

2008-10-27 Thread Karl Swedberg
On Oct 26, 2008, at 9:33 PM, 5h4rk wrote: Hi, I have p class=jsoffPlease turn Javascript on to view the content./p and $('p.jsoff').hide(); When I turn CSS off using the Web Developer Extension for Firefox and Javascript on, the message is somehow not hidden. I'm not sure if this is the

[jQuery] Re: hide() not working when disabling CSS

2008-10-27 Thread Isaak Malik
It's much wiser to use noscriptp class=jsoffPlease turn Javascript on to view the content./p/noscript instead of a JavaScript function that hides it. On Mon, Oct 27, 2008 at 11:01 PM, Karl Swedberg [EMAIL PROTECTED]wrote: On Oct 26, 2008, at 9:33 PM, 5h4rk wrote: Hi, I have p

[jQuery] jCarousel -help with new skin

2008-10-27 Thread Black2Night
I'm creating a new theme for the jCarousel component that I'll be using for my web site and the dimension for this component will be: width:485px , height:161px including the two arrows and what i want is to have 3 items per cycle each having the a dimension of 140X100 (width X height) with 5px

[jQuery] jcarousel lite: getting it to work with a grided li display

2008-10-27 Thread claudes
i have the following designs (uploaded files better than words); using jcarousel lite, i'm trying to achieve the gridded design and the carousel motion (left/right) i tried modifying the math, but it still calculates the length incorrectly and when i number the li to make sure that 1-6, 7-12,

[jQuery] Selector

2008-10-27 Thread shapper
Hello, I have the following: levels = $('input:checked + label'). ... Can I select only the inputs checked but which name is Level? Thanks, Miguel

[jQuery] AJAX post, dynamic data field names

2008-10-27 Thread Mark Steudel
Let's say we have the following piece of code: $.post(/scripts/admin.course.php, { elemname: value1, elemname2: value2 } , function(data){} ); Is there a way to dynamically set the field name? e.g. var elemname = 'newname'; $.post(/scripts/admin.course.php, { elemname: value1, elemname2:

[jQuery] jQuery Form Plugin using keyUp() or change() instead of submit

2008-10-27 Thread brian mahoney
Is there a way to get the jQuery Form Plugin to work with a keyUp() or change() instead of having to use a submit button?

[jQuery] Re: Validate. Can validate plugin do this?

2008-10-27 Thread shapper
The values of the select, the input and the names of the selected checkboxes are added to a string and added to the unordered list as: liInput Values/li If the select is empty and the input is empy I want to display the error message and the items not added. Here is my code: // Define

[jQuery] Re: Jcrop minSize

2008-10-27 Thread [EMAIL PROTECTED]
try this: $('img.currentimage').Jcrop({ setSelect: [ 0, 0, 400, 400 ], aspectRatio: 1, minSize: [400,400], maxSize: [400,400] }); On Oct 27, 7:50 pm, R0bb13 [EMAIL PROTECTED] wrote: I'm using Jcrop to select a 1:1 ratio non-resible area. The idea is to move the area but not to

[jQuery] Re: Selector

2008-10-27 Thread Ryura
evels = $('input[name=Level]:checked + label'); Should do it for you. On Oct 27, 7:13 pm, shapper [EMAIL PROTECTED] wrote: Hello, I have the following: levels = $('input:checked + label'). ... Can I select only the inputs checked but which name is Level? Thanks, Miguel

[jQuery] Re: hide() not working when disabling CSS

2008-10-27 Thread 5h4rk
Thanks! Now I get it. Can you explain the reasoning behind the noscript approach please? Thanks again. On Oct 28, 9:50 am, Isaak Malik [EMAIL PROTECTED] wrote: It's much wiser to use noscriptp class=jsoffPlease turn Javascript on to view the content./p/noscript instead of a JavaScript

[jQuery] Don't focus a readonly field

2008-10-27 Thread TimW66
Hi all, I have a table that I will usually want to focus the first input box in the first column in the last row. Something like this: table tbody tr ... /tr tr td input -- selects this one input type=hidden /td td input /td

[jQuery] Re: Selector

2008-10-27 Thread shapper
Thanks! On Oct 27, 11:36 pm, Ryura [EMAIL PROTECTED] wrote: evels = $('input[name=Level]:checked + label'); Should do it for you. On Oct 27, 7:13 pm, shapper [EMAIL PROTECTED] wrote: Hello, I have the following: levels = $('input:checked + label'). ... Can I select only the

[jQuery] Re: Add label

2008-10-27 Thread Karl Swedberg
Try this: var $msg = $('#Message'); if (!$msg.val()) { $msg.after('label for=Message generated=true class=WelcomeWelcome Text/label'); } --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 27, 2008, at 5:58 PM, shapper wrote: Hello, I need to

[jQuery] Re: jQuery.getScript problems on IE 7

2008-10-27 Thread Karl Rudd
Well it looks like you're out of luck: http://dev.rubyonrails.org/ticket/10184 Just bit the bullet and load Prototype on every page. Karl Rudd On Sat, Oct 25, 2008 at 4:55 AM, Alexsandro_xpt [EMAIL PROTECTED] wrote: So.. get this example

[jQuery] Re: Event.target is Parent Child in IE but in Firefox it is child Element

2008-10-27 Thread csplrj
I am using Firefox 3.0.3 and IE 6.0 If we scroll mouse over Menu1 then in Firefox the message comes menu1 nav but in IE it comes nav nav Thanks in advance CSJakharia

  1   2   >