[jQuery] Reliably grab all the .css files in a page.
Hi, I need a way to determine all of the .css files either linked or imported in to a particular page. How is it best to do this? (bearing in mine they could be pulled in with a link tag or an import statement) Thanks for your help Tom Holder http://ok-cool.com/
[jQuery] appears 'jQuery in Action' is now shipping
Just thought i'd give a general heads up: I was looking to buy this book late last week and noticed it wasn't in stock by Amazon yet (despite the "Feb 7th" publish date), but it appears that it is now in stock and shipping :-)
[jQuery] I can't seem to break out of this frame.
Here's the page http://guestbook.spinskins.net It's just a guest book/comment section of my site. If you click "main menu" or any of those three nav links at the top of the page, you can see that it does break out of the frame but it opens in a new window. I want it to break out of frame and <u>remain in the same window</u>. I've added <a href="http://spinskins.net" target="_top">Main Menu</a> to the links but it still jumps to a new window. I believe it's cause there is an iFrame in the center of
[jQuery] Ideas for jQuery presentation to NYPHP
Hello all: I've been given the opportunity to present jQuery at a meeting of NYPHP [nyphp.org] in June. I'd like to give an introduction to most of the major features of jQuery, side by side comparisons of JavaScript applications rewritten in jQuery and then rewritten as jQuery plugins, a brief look at some of the things that can be done with jQuery UI and Enchant. I'm still lacking in two areas: 1) Showcasing ways jQuery and PHP can work together (besides json_[encode/decode]). 2) Which plugins
[jQuery] How to grab Selected Radiobutton in RadioButtonList
If I have a radiobuttonlist helper in my .aspx, how do I use JQuery to grab the selected ID in the Radiobuttonlist element when the user selects a radiobutton?
[jQuery] Asynchronous Search & CSV data
Hey all, I have an input field on an HTML page and data in a CSV file. I have to do an AJAX'y search and display the results in a table. I've been searching all over the place for a relevant tutorial re: searching/ parsing CSV with JavaScript etc but haven't found anything very good. Hoping someone here can point me in the right direction. Thanks, Matt
[jQuery] SlideUp in IE7 not working
Hi, Taking on my first work with jQuery, I have come across a rather bizarre problem. I have a slideUp that takes places after a form submission and ajax call success. This works fine in IE 6, firefox and Safari, but in IE 7 the div that the slideUp is applied to just seems to disappear instead. I have tried to apply the slideUp to a different div and it works fine, just when I apply it to one certain div, it seems to stop working. The site in question can be seen here: http://dev.northlightarchitecture.com/#4
[jQuery] trigger('click') on anchor tag not working like i thought
I have this code: //window.open($('#redirect_link').attr('href'), 'new_window'); $('#redirect_link').trigger('click'); This does nothing and the link tag looks like: http://www.example.com test However, if i do the window.open way it works fine but gets blocked as popup. shouldn't the trigger.('click') perform the link in a new window? is thier another way to do this without having a popup blocker blocking me. -- View this message in context: http://www.nabble.com/trigger%28%27click%27%29-on-anchor-tag-not-working-like-i-thought-tp15593698s27240p15593698.html
[jQuery] Print Preview and window.close in IE6
I have what seems to be a simple problem: When a user selects File>Print Preview, then closes the preview using the 'X' in the upper right-hand corner of the window instead of the 'Close' link, it disables any window.close functions that I have on the parent page. Has anyone had any prior experience with this issue and used jQuery to solve it? Thanks, Jay
[jQuery] Selenium and autocomplete?
Has anyone had any success using Selenium to fill in a field using Jorn's Autocomplete plugin?? I'm struggling to figure out how to get it to 'pick' a value from the dropdown... Thanks, Jim
[jQuery] JQuery/Front End Engineering contract position
Hi, A client of mine has a 2-3 month contract position available in Sunnyvale for a Front End Engineer. Could very well be extended beyond that timeframe. Would you or anyone you know of be interested in this position? If so, please send your contact information to Sean Mullen via sean.mullen@csetalent.com. Thanks! My client has an opening for a Front End Engineer in Sunnyvale CA. Start is ASAP & will last for 2 to 3 MONTHS. Skills (in order of importance): Primary: JQuery, JavaScript, CSS Secondary:
[jQuery] jQuery Cycle Plugin Hiding Problem
Does anyone know why the images do not show properly in FireFox or Safari in this demo? http://www.twooner.com/slideTest/test.html This was taken almost directly from the jQuery Cycle Plugin 'after' callback demo. The images are not visible at all in Safari, and only show when transitioning in FireFox. Any help would be most appreciated. Thanks!
[jQuery] datepicker with 2 months not floating correctly [width issue I suppose]
Hi :) I'm trying to use the great jquery UI datePicker, incredible piece of software, nothing to say. only problem is that if I put numberOfMonths: 2 in the options, it doesn't seem to render it correctly. the two months are not displayed on the same line, but the second is under the first, and they both have blank space on the right... I swear I didn't mess with the CSS, and this issue affects both IE7 (not tested with 6) and FF... could you please help me? thanks a lot andrea
[jQuery] Parallax scrolling, background & foreground elements
A recent site launch has a bit of a buzz surrounding the use of parallax backgrounds. When resizing the window width at: http://silverbackapp.com/ you will see what I mean the leaves have a very three dimensional effect. This effect would be great to use with any of the jquery scrolling plugins etc, like: http://www.learningjquery.com/2007/10/improved-animated-scrolling-script-for-same-page-links and others. Dropping a bug in everyone's ear then, that this might be a fun idea to play around with.
[jQuery] JQuery + TableSorter + TableSorterPager + (Container != Div) = undefined error
Greetingz All! Instead of ( http://pastebin.com/m217e5395 ): <div id="pager" class="pager"> <form> <img src="../addons/pager/icons/first.png" class="first"/> <img src="../addons/pager/icons/prev.png" class="prev"/> <input type="text" class="pagedisplay"/> <img src="../addons/pager/icons/next.png" class="next"/> <img src="../addons/pager/icons/last.png" class="last"/> <select class="pagesize"> <option selected="selected" value="10">10</option>
[jQuery] [Release] jQuery.Listen 1.0
Hi everyone, I added a new release for jQuery.Listen, the first non- beta version. Although is not a very popular plugin (I think), I wanted to give a stable release to those that use it. I made a prettier demo that only lacks the style, and I just can't finish it right now. The actual demo shows its use for dynamically added rows to a table using jQuery. Of course the plugin is not restricted to rows and can be used for AJAX content or any kind of dynamic content. The demo also has some text inputs,
[jQuery] Add a class to all the LIs without a children UL
I have a nested UL/LI structure where the root UL has id="tree" and i have to select all the LIs that don't have a children ul to apply to them a class called 'leaf'. I tried: $('#tree li>:not(ul)').addClass('leaf'); $('#tree li:([ul])').addClass('leaf'); Could someone help me?
Validation problem
I have found this excellent validation plugin: http://bassistance.de/jquery-plugins/jq ... alidation/ After the form has been validated I want to run a function, and if that function returns true I want to submit the form. I have added a custom submitHandler: $.validator.setDefaults({ submitHandler: function() { check(); } }); In my check() function I have $('#theForm').submit() But the form is never submitted. Any ideas?
stuck with functions plugin
hello every body i made a rating system based on the one that in the main tutorial and now i wanted to right it on a seperate file so that at the end i will just add it to my page. i made it as a function and i called it: jquery.rating.js i saved this file in the same directory of the Jquery.js file. this is how my file looks like: jQuery.fn.rating = function(options) { var settings = jQuery.extend({ url: "" }, options); for ( var i = 1; i <= 5; i++ ) $("#unit_ul").append("<li><a
[jQuery] know of a truly complete jquery reference?
The jquery website itself si abit hard to navigate when you're looking for something specific. I love visualjquery but it appears to not be totally complete. Looked over the other ones linked from the jQuery web site, but no luck. Anyone know of a simple reference site that really has everything documented?
[jQuery] visual jquery 1.1.2
Where to download the visual jquery 1.1.2 (not the 1.1, link in http://visualjquery.com/1.1.2.html is to 1.1)
[jQuery] Communication between two Jsps using Javascript
I m new to use Javascript. I will really aprreciate if you take some time and clarify my doubt. Here is the situation. There is a 'Browse' hyperlink on the Parent jsp. As soon as, i click the link, a new jsp Child jsp is opening with the values coming from the backend. As the user selects some values in the Child jsp and say 'Add', the values should be transfered and displayed ( can be done by creating dyanamic 'divs')to the Parent jsp. Here is the tricky one. The Parent jsp should not refreshed.
formatting on table cells lost when using jQuery
A table is hidden when the page loads. When the user clicks on a checkbox the table will slide down. When I don't use jQuery to manipulate the table there is spacing between the cells. If I do use jQuery, then the spacing between the cells is lost, despite me not changing any class/id attributes. There are two tables with the class ".formTable" on the page and it's the second one, hence my referring to it using '.formTable:eq(1)'. The table doesn't have any IDs. This is the code I was trying to use:
[jQuery] Select an item by id using regular expression
Hi guys This is my first post in this list. I need help to do the following. I have some links, with the id's link_1, link_2, link_3, etc. The number of links can be greater than that. I would like to put the click event in all of then but, i don't know how to write an regular expression to select them. I have tried something like that: $([@id=link_/[0-9]+/).click( ... The code above don't work of course so, how can i do to do that? Thank you
[jQuery] dimensions plugin - stumped. Its worked before now it doesn't.
I have used dimensions a few times w/o problem. Why does this give me an error "doesnt support this object or method"? I'm utterly stumped - I'm using jquery 1.1.3 -- tired with older versions, still gives me same error. <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.dimensions.js"></script> <script type="text/javascript"> $(function(){ $('#something').click(function(){ alert($(this).offset().left); }); }); </script> <body> <div
[jQuery] ajaxsubmit success does not fire
Hi, I have a contact form set up at www.vinhlewebdesigner.com. I want to submit the form using ajax and then display a message of success upon successful completion. Right now it submits the form, processes the beforeSubmit option, but it does not process the success option. I know this for sure because I used firebug to break at exactly that point and the submission went though, but as soon as I resumed the script it will proceed to go to the script's page without displaying the success alert. I
[jQuery] how the ready() work of jquery
hi all, I need to do some special action in the $.ready callback.but i have multi block $.ready() code.one to hold shared code,others for page special code. so the question is what will be execute first,is that fixed?From the test i have done,it was not fixed. some more questions,what's the better way to load external file on the fly when the file is needed? how can i know is one file is loaded completely?
[jQuery] Slow script startup times in IE6
A few months back I wrote the client side code for our IT assistant (http://www.pcwb.com/assistants/) as a project to find more interesting ways for people to shop. The idea being that if we give the users an interesting user interface that encourages them to play with it then they might be more inclined to actually purchase. It lay dormant for a few months but interest in pushing the assistant has increased recently so we started setting up some product mixes for it. unfortunately we hit a bit of
[jQuery] interface elements question
I have 4 div.section wich contains div.item(s) the fist one is the source and the rest are the targets, i can (and i need) move from one to another but i need to block the drop event from the targets to the sources With this code, all work $('.section').Sortable( { accept: 'item', helperclass: 'sortHelper', activeclass : 'sortableactive', hoverclass : 'sortablehover', handle: '.handle', opacity: 0.7, tolerance: 'pointer' } ); html div#source.section div#t1.section div#t2.section div#t3.section btw
[jQuery] How to setup the default date format for use by jquery
I am using the form validation plugin, and the ui datepicker. The default dateformat in both these plugins is not what I expect. How can I set the date format for jquery?
[jQuery] JQuery not working in IE6
I am using jquery with a site, and developed using firefox. The site works as expected in firefox. One of my pages breaks in IE6, with the following message, nodeName is null or not an object. line: 638 I am using jquery latest.
[jQuery] Slide effects 'jittery'
In my case I have a list of elements (5 images), with 2 elements slide animating at the same time - one hiding and one showing. When 2 elements are in the process of animating the list of elements below the animating elements will 'jitter' up and down. Has anyone else experienced this and if so is there any way to get rid of it? :drunk: Thanks! -- View this message in context: http://www.nabble.com/Slide-effects-%27jittery%27-tp14889408s27240p14889408.html Sent from the jQuery General Discussion
[jQuery] Image Map clueTip problems in FF
This works great in IE but in FF I get the following error: uncaught exception: [Exception... "Could not convert JavaScript argument" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS)" location: "JS frame :: http://www.hondaclassic.com/js/jquery-1.2.2.pack.js :: anonymous :: line 11" data: no] Here is the page: http://www.hondaclassic.com/coursemap/default.html
[jQuery] losing plugins
i've tried to get an answer to this question before, but been unsuccessful - however, it's becoming a more general issue and i really could use a solution if anyone can offer one. my problem is that at different points in the call stack, the object jQuery.fn doesn't necessarily have all the same things in it. if i look at jQuery.fn right when $(document).ready() is called, all the plugins i've set up are listed as available methods in firebug. i ajax in some content, and ajax in more content inside
[jQuery] Quebra de Linha no JQGrid
Dear Friends, I am using the JQGrid with fields contain bronken lines (field record txtarea), but the Grid don´t load... Make a text bring a tag <br/>, with it th broken line is a success, meanwhile, using PHP with function " nl2br" to make this conversion, but ocurrs the same error. Someone have a suggestion to resolve my problem? thank´s Marcio
[jQuery] [TreeView] Old version
Hi Jörn, Is it possible to download the 1.3 zip. I need to try and resolve <http://groups.google.com/group/jquery-en/browse_thread/thread/e9e86cd90855c1af/1a2284134cb381bb?>. Thanks, J.
[jQuery] Mousemoves only while mouse button is down
What is the cleanest way to set up a mousemove that happens only while the left mouse button is depressed? Would it be to set up a mousemove event handler inside a mousedown event handler? Or is there a simpler, cleaner way?
[jQuery] a small accessibility rant
Before (trying to) adopt jQuery, I've never used Javascript to control content. In reading hundreds of blogs by Javascript developers over the past weeks, I've been alarmed by their attitude to accessibility. It's not just a matter of 'political correctness', and it's not just about minority users. One tiny example: a friend of mine has rubbish eyesight - she's not blind, she's fit to drive - she has her screen resolution set to LARGE so she can read it. The other day, she wanted to open a new 'internet-only'
[jQuery] how to... jquery plugin [validate]
Hola, estoy haciendo un formulario de subida de imágenes. Hay alguna manera de personalizar el mensaje de error cuando se configura el campo de texto mediante {} por ejemplo <input class="{required:true...hay mas código que pueda ir aqui para personalizar el menjsa e de error?}" /> necesito hacerlo de esa manera ya que el campo de texto se va a generar después con javascript haciendo posible subir 1 o n fotos, asi que la unica manera de validarlo seria pasando el parametro mediante la clase he logrado
[jQuery] JQuery Loading Div
How do you do a Jquery Loading div?
Next Page