[jQuery] Re: setting a dynamic variable

2009-07-20 Thread Michael Geary
This may be easier if you forget about jQuery for a moment and just think about JavaScript. Note that the argument you're passing to $() is a string. What if you used alert() instead? Now how would you do it? function my_function(panel_id) { alert( '#--- .container' ); } You

[jQuery] Re: UI Tabs and xStandard Object

2009-07-20 Thread Klaus Hartl
Could you try this? http://docs.jquery.com/UI/Tabs#...my_slider.2C_Google_Map.2C_sIFR_etc._not_work_when_placed_in_a_hidden_.28inactive.29_tab.3F --Klaus On 19 Jul., 15:25, blackmeta...@googlemail.com blackmeta...@googlemail.com wrote: Hi I seem to have found the following bug. (I am

[jQuery] Re: li/img click and window.keydown

2009-07-20 Thread Lideln
Up ! On 17 juil, 22:47, Lideln lid...@gmail.com wrote: Up ! :) On 16 juil, 22:32, Lideln lid...@gmail.com wrote: up On 16 juil, 08:10, Lideln lid...@gmail.com wrote: up ! (wow, this forum gets 10 new posts per hour) On 15 juil, 21:52, Lideln lid...@gmail.com wrote:

[jQuery] Re: UI Tabs and xStandard Object

2009-07-20 Thread blackmetaluk
Hi, This did not seem to work. The tab in question is the first tab so is not hidden when the page loads. Thanks On Jul 20, 7:26 am, Klaus Hartl klaus.ha...@googlemail.com wrote: Could you try this?http://docs.jquery.com/UI/Tabs#...my_slider.2C_Google_Map.2C_sIFR_etc... --Klaus On 19

[jQuery] Get the value of the option elements

2009-07-20 Thread debussy007
Hello, The following code below doesn't seem to give the expected result: $('#aUsers option:selected').each(function() { console.log('user: ' + $(this).val()); }); It will display the empty string. -- View this message in context:

[jQuery] any plugin for twitter+flickr+fb+delicious+tagged

2009-07-20 Thread Veeru
Hi there is there any one single plugin that can handle twitter, facebook, flickr, delicious, tagged etc? Something like http://amplifeeder.com/ i have seen plugins specifically for twitter or flicker etc, but is there one single plugin that can handle everything? Any response is highly

[jQuery] Re: Get the value of the option elements

2009-07-20 Thread debussy007
Uhm ... for some obscure reason I got it working now ... debussy007 wrote: Hello, The following code below doesn't seem to give the expected result: $('#aUsers option:selected').each(function() { console.log('user: ' + $(this).val()); }); It will display the empty string.

[jQuery] Re: Bug jQuery 1.3.2 FF3.5 - $(input[name=''])

2009-07-20 Thread false
Thanks, will try it when i have a chance to install FF3.5 again On Jul 17, 8:22 pm, MorningZ morni...@gmail.com wrote: i wonder if this would work $(input, textarea).not([name]).each() . On Jul 17, 9:58 am, false falseconversati...@gmail.com wrote: This code used to work before i

[jQuery] Re: li/img click and window.keydown

2009-07-20 Thread Liam Potter
show us you script and stop bumping so often. Lideln wrote: Up ! On 17 juil, 22:47, Lideln lid...@gmail.com wrote: Up ! :) On 16 juil, 22:32, Lideln lid...@gmail.com wrote: up On 16 juil, 08:10, Lideln lid...@gmail.com wrote: up ! (wow, this forum gets 10

[jQuery] TableFilter Issue

2009-07-20 Thread jazz
Hi Folks, i am using table filter. http://ideamill.synaptrixgroup.com/jquery/tablefilter/tabletest.htm i want to disable the Menu option...how to do this. Regards, Bharath

[jQuery] Possible bug in appending scripts: works under FF3, doesn't with IE7?

2009-07-20 Thread stephen
Hello, theoretically the following two web pages should be equivalent, and indeed they are under Firefox3, but IE7 fails miserably in rendering the second version. The included script is a simple public script provided by the hotel review site trivago.com that shows a specific hotel's current

[jQuery] Re: Could REALLY use some help implementing a slider/carousel. I think I am really close!

2009-07-20 Thread Charlie
you keep focusing effort on the DIV wrapping the slider, but the not the UL which is the first block level parent of the slider images. I'm not sure why overflow on div not working but I would attack the UL with float, height, overflow etc. With those huge images and therefore very slow load

[jQuery] Re: jcarousel - malware-adware?

2009-07-20 Thread Jon Banner
set your dimensions as in the stylesheet included in the documentation. http://sorgalla.com/projects/jcarousel/lib/jquery.jcarousel.css 2009/7/19 icpep icpep@gmail.com MorningZ wrote: It's called a false positive... where Spybot *thinks* it's something malicious, but it isn't... if

[jQuery] Json GET Method

2009-07-20 Thread jayz
Am trying to access a restful service through jquery. Could any one provide me with sample code how to make a GET request which will consume json data returned by the service. am a total newbie. any help wil be appricitd. Jayz

[jQuery] Re: Json GET Method

2009-07-20 Thread MorningZ
the official documentation is a great place to start http://docs.jquery.com/Ajax/jQuery.getJSON#urldatacallback that method will make a GET call and automatically parse the returned data as JSON On Jul 20, 7:21 am, jayz sharmaa...@gmail.com wrote: Am trying to access a restful service

[jQuery] Re: Json GET Method

2009-07-20 Thread Ajay Sharma
am talking about Function(data) content how to play with json data , thats what i want to know . As am not able to understand with the flicker example. *function(data){ $.each(data.items, function(i,item){ $(img/).attr(src, item.media.m).appendTo(#images); if

[jQuery] Re: Can't change padding using animate() in IE

2009-07-20 Thread Rich Man
buy cheap designer bags here http://www.px78.com/Handbags/ On Jul 20, 6:38 am, djeyewater showerhead...@hotmail.com wrote: I have a function that resizes an image (imgCur) and changes its padding when a new image (img) is loaded like so: img.onload = function(){             var t = this;    

[jQuery] Re: click treeview and then jqgrid refresh?

2009-07-20 Thread Orcun Avsar
You can use: $(#grid_id).trigger(reloadGrid); it reloads grid with grid params that may be changed by browser user ( sorting name, page number), so if you want a full refresh or need changed options on grid , you may need to use something like this:

[jQuery] Re: setting a dynamic variable

2009-07-20 Thread Cold Flame
Hi Mike and sig, Nice explanation ... function my_function(panel_id) { alert( '#-'+panel_id+' .container' ); } I hope that will work for you. Regards Umair Shahid

[jQuery] Re: setting a dynamic variable

2009-07-20 Thread Cold Flame
Hi Sig, you can achieve that by function my_function(panel_id) { var $container = $(#+panel_id+ .container'); ... } Hope that will work for you . Regards Umair On Jul 20, 11:35 am, macsig sigbac...@gmail.com wrote: Hello guys, I have found a script that works fine for me but I'd like

[jQuery] Re: JQuery XML and FusionCharts

2009-07-20 Thread shamasis
yes, a sample implementation would do great. btw, what messages do you get if you run FusionCharts when debugMode is enabled? On Jul 17, 6:32 pm, JD odonovan.jo...@gmail.com wrote: Hi guys,     I have an AJAX request which passes back some xml data, at the moment I am only interested in one

[jQuery] switchClass not working on BODY

2009-07-20 Thread Lucian Cioranu
Hi, I am trying to change the class of body using switchClass, and it is not working. AddClass and removeClass are working just fine. Anyone has a solution for that?

[jQuery] maxlength with jQuery FCKeditor 1.30

2009-07-20 Thread xxxlo71
i need help. here is the problem script type=text/javascript src=http://ajax.googleapis.com/ajax/ libs/jquery/1.3.2/jquery.min.js/script script type=text/javascript src=/js/jquery.FCKEditor.js/script //Rick Text 編輯器 $(function(){ $('#comment_content').fck({path: '/js/fckeditor/',toolbar:

[jQuery] Re: Superfish - open menu with ENTER key

2009-07-20 Thread JC
Yes, The keyboard navigation needs to be drastically improved. I love this plugin, but let's think about the navigation. I use primarily keyboard navigation to navigate around my OS/the web. I chose mac os x because of it's awesome menu navigation (OS.) Mac has quite a nice menu navigation. In

[jQuery] Convert Jquery to Mootools

2009-07-20 Thread Sebastien BRUNEL
Hi I have developped this function in jquery for a website, and i have to use it on another site which is using mootools. I've tried to convert it, but no way to make it works. So i ask for your help. The goal of this 2 function is to have a good view of my banner, without the gap of one or two

[jQuery] Is it possible to add filters to the (validate) plugin?

2009-07-20 Thread Joe Devon
The validation plugin is working wonderfully. On the server side, there is some processing like trimming the input field, lowercasing the input field, etc... Is there an easy way to wrap the fields into such filters prior to processing so that the client check matches the server check? The

[jQuery] jQuery Animation problem

2009-07-20 Thread SamV
Hi, I' ve got this problem with jQuery: I have to click 2 times before the animation starts the first time, from then on it works perfectly. Is there anyone who can solve this problem? You can see it here: http://www.spurtersite.aclebbeke.be/spurters.php Under Tijden there' s a link meer

[jQuery] Using jQuery with the ZK Framework

2009-07-20 Thread timothy.....@gmail.com
ZK 5 pewview now makes use of jQuery for clientside scripting purposes, I have written two articles on implementing effects using jQuery ZK 5.0 preview, they can be located at the following links: http://docs.zkoss.org/wiki/ZK_5.0_and_jQuery and

[jQuery] jQuery Animation problem

2009-07-20 Thread SamV
Hi all, when clicking an item on my website, it has to expand so you see some more options (links). Now, when I want it to appear, I have to click it twice, after I clicked it twice, it works perfectly with one click.. Anyone who can help me out here? You can find the code on:

[jQuery] [tooltip] Fade on IE

2009-07-20 Thread apuredol
Hi, I am using and modifying the sample demo page and have a error on IE: Using: $(function() { $('#pretty').tooltip({ track: true, delay: 0, fade: 500, showURL: false, showBody: - ,

[jQuery] (validate) rules on id's instead of names?

2009-07-20 Thread toon
input class=input-250 name=search[all][and] id=search_and type=text value=/ how do i put a minlength:4 rule on this field? thanks,

[jQuery] convert greybox into bookmarklet

2009-07-20 Thread frikster
Hi anyone know how to convert this into a bookmarklet so that on click of bookmarklet in an overlay with iframe google home page can be opened http://jquery.com/demo/grey/

[jQuery] input fields don't work after using $load()

2009-07-20 Thread James
I am using the $(load) function to populate a div in my HTML with form. The code snippets look something like this. html ... ... div id=formArea/div ... ... /html $('#formArea').load('content/myForm.txt'); The form loads fine, but the input controls no longer work once the form is loaded

[jQuery] Re: Can't change padding using animate() in IE

2009-07-20 Thread Cold Flame
Hi, The thing which i have observed is that if you try to set the padding property i.e padding:20px 40px .. you will get an error in IE but if you set padding:40px it will work fine although it will not give the results what u trying to achieve .. so you can set padding-left , right , top and

[jQuery] Validation plugin - submit form without validation

2009-07-20 Thread Adam P
I'm using the Validation plugin for JQuery and was wondering if there was a function to submit the form without causing it to validate the form. I have a table with a list of radio-buttons and above that is a drop down list of states. The drop down list of states is used to filter the table

[jQuery] $(document).ready script appears to not run in IE?

2009-07-20 Thread Billy
Hello all, I'm relatively new to jQuery, and I'm having some trouble making a selected tbody display in IE. It seems to work fine in FireFox, and Chrome. See here: http://wwwdev.latrobe.edu.au/nursing/ProspectiveStudents/Postgraduate2009/questionnaire/index.php I've looked up various fora,

[jQuery] Re: Can't change padding using animate() in IE

2009-07-20 Thread Cold Flame
Hi, The thing which i have observed is that if you try to set the padding property i.e padding:20px 40px .. you will get an error in IE but if you set padding:40px it will work fine although it will not give the results what u trying to achieve .. so you can set padding-left , right , top and

[jQuery] Re: Can't change padding using animate() in IE

2009-07-20 Thread Cold Flame
Hi, The thing which i have observed is that if you try to set the padding property i.e padding:20px 40px .. you will get an error in IE but if you set padding:40px it will work fine although it will not give the results what u trying to achieve .. so you can set padding-left , right , top and

[jQuery] blockUI problem

2009-07-20 Thread Ulici Adrian
I just started using blockUI plugin for jQuery, and I have a problem with forms. I use blockUI to overlay the background and show a form. The problem is that when I'm trying to access the elements from the form it doesn't work. Anyone knows why?

[jQuery] Re: blockUI problem

2009-07-20 Thread MorningZ
showing some code would be of value to helping others help you... On Jul 20, 4:49 am, Ulici Adrian uliciadr...@gmail.com wrote: I just started using blockUI plugin for jQuery, and I have a problem with forms. I use blockUI to overlay the background and show a form. The problem is that when

[jQuery] Re: switchClass not working on BODY

2009-07-20 Thread Richard D. Worth
Works for me: http://jsbin.com/axehe Perhaps you haven't included jQuery UI Effects core? That's where switchClass comes from: http://jqueryui.com/demos/switchClass/ If you're just using jQuery, and don't need to animate the switch, toggleClass is what you want:

[jQuery] Re: Could REALLY use some help implementing a slider/carousel. I think I am really close!

2009-07-20 Thread Alan
Hey, that took care of Problem #1 It no longer shows the content on page load. It still shows the content to the left and right of the screen, causing a browser scrollbar at the bottom in IE 7. But closer yet..lol Still can't figure out that issue though..ben playing with CSS, but not

[jQuery] Re: Requirement for duplicate AJAX attribute name

2009-07-20 Thread Coop
NM. I forget JQuery had serialization built into it. On Jul 19, 9:03 am, Coop coob...@gmail.com wrote: All, I have a situation where I need to pass the same named attribute to an AJAX enabled endpoint. Basically I need to simulate something

[jQuery] Re: Could REALLY use some help implementing a slider/carousel. I think I am really close!

2009-07-20 Thread Alan
fyi...so it works perfect in Firefox nowjust don't know how to fix the overflow issue in IE 7. On Jul 20, 6:21 am, Alan alanblackf...@gmail.com wrote: Hey, that took care of Problem #1 It no longer shows the content on page load. It still shows the content to the left and right of

[jQuery] Re: [tooltip] Fade on IE

2009-07-20 Thread Michael Smith
I've struggled with similar problems - and have reluctantly had to use a gif instead. Although the image might not be as nice, it does actually seem to work fine in IE On Mon, Jul 20, 2009 at 1:42 AM, apuredolapure...@gmail.com wrote: Hi, I am using and modifying the sample demo page and have

[jQuery] Re: [tooltip] Fade on IE

2009-07-20 Thread Liam Potter
Yep, simply no way around this except to not use a PNG or not to animate the opacity. Michael Smith wrote: I've struggled with similar problems - and have reluctantly had to use a gif instead. Although the image might not be as nice, it does actually seem to work fine in IE On Mon, Jul 20,

[jQuery] Re: $(document).ready script appears to not run in IE?

2009-07-20 Thread amuhlou
I don't know if this is part of the issue or not, but IE7 does not have support for the display:table; property. See quirksmode to see what properties it does support (not many): http://www.quirksmode.org/css/display.html On Jul 20, 2:44 am, Billy mail.billy...@gmail.com wrote: Hello all,

[jQuery] Display message on successful client side validation.

2009-07-20 Thread dev
Hello, I'm using jquery Validation plugin (http://bassistance.de/jquery- plugins/jquery-plugin-validation/) for client side validation. On successful validation, I would like to display Processing message (till new page loads - non AJAX post). Please tell how to do so ? ( If triggered via

[jQuery] Re: Display message on successful client side validation.

2009-07-20 Thread Jörn Zaefferer
Use the submitHandler option and resubmit: $(#form).validate({ submitHandler: function(form) { // add code to display message form.submit(); } }); Jörn On Mon, Jul 20, 2009 at 5:16 PM, devjava_mail_l...@yahoo.com wrote: Hello, I'm using jquery Validation plugin

[jQuery] jquery slider..1 issue left! :) (works in FF but not IE)

2009-07-20 Thread Alan
note: Thanks Charlie for helping with first issue! I'm down to one issue with the easyslider jquery plugin. If you look at http://www.movieeye.com/index-new.jsp in IE 7, you'll notice the text is overflowing and creating a horizontal scrollbar on the browser page. I'm not much of a coder, and

[jQuery] Re: jquery slider..1 issue left! :) (works in FF but not IE)

2009-07-20 Thread Liam Potter
in the css #slider{ width:896px; overflow:hidden; } Alan wrote: note: Thanks Charlie for helping with first issue! I'm down to one issue with the easyslider jquery plugin. If you look at http://www.movieeye.com/index-new.jsp in IE 7, you'll notice the text is

[jQuery] Re: jquery slider..1 issue left! :) (works in FF but not IE)

2009-07-20 Thread Liam Potter
I've just had a closer look and the way you have this setup is messed up, why do you have 3 li's containing 6 divs each, rather then using an li to contain each thumbnail and caption? Alan wrote: note: Thanks Charlie for helping with first issue! I'm down to one issue with the easyslider

[jQuery] cluetip positioned centered on top of link

2009-07-20 Thread Randy
Is there anyway to do this? I have topOffset: -25 but since the links are of varying lengths, there isn't a leftOffset value that would center the cluetip over different size links.

[jQuery] Re: li/img click and window.keydown

2009-07-20 Thread Lideln
Hi, Thanks for the answer. Here is a bit of my script : [code] // Constructing the modal... SModule_gallery.oGalleryModal.jqm({modal: true}) .width((SModule_gallery.GALLERY_COLS * (SModule_gallery.GALLERY_ITEM_WIDTH + 10)) + 4) // 6 et 4 correspondent à des paddings

[jQuery] [Autocomplete]

2009-07-20 Thread koichirose
Hello, I'm using jQuery Autocomplete ( http://docs.jquery.com/Plugins/Autocomplete ) to display results from a php page. Since that is my only field, I want to submit the form when I click on the result or I press the 'return' key. How do I do that? The result is showing something like

[jQuery] [Autocomplete] Form submit or link on mouse click or return key

2009-07-20 Thread koichirose
Hello, I'm using jQuery Autocomplete ( http://docs.jquery.com/Plugins/Autocomplete ) to display results from a php page. Since that is my only field, I want to submit the form when I click on the result or I press the 'return' key. How do I do that? The result is showing something like

[jQuery] Re: My new website AllJobsXChange.com developed with Jquery

2009-07-20 Thread son
Rob, Thanks. I have used the !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; since I have deprecated elements. I have a question for everyone. Supposedly for HTML 4.01, the ending of an input tag is simply but in w3school it show /. It does

[jQuery] Re: TableFilter Issue

2009-07-20 Thread aquaone
AFAIK there is no option to do that. You could edit the code (in theory) to remove it but I do not believe an option to omit it exists. On Mon, Jul 20, 2009 at 03:33, jazz bharathbhooshan.amb...@gmail.comwrote: Hi Folks, i am using table filter.

[jQuery] Re: jquery slider..1 issue left! :) (works in FF but not IE)

2009-07-20 Thread Alan
I think it is set-up that way to slide 6 li's at a time, as opposed to one at a time. I changed #slider as suggested, no impact. What is weird is how it works in FF without issue. On Jul 20, 8:55 am, Liam Potter radioactiv...@gmail.com wrote: I've just had a closer look and the way you have

[jQuery] Re: jquery slider..1 issue left! :) (works in FF but not IE)

2009-07-20 Thread Alan
Hey, just another thoughtbut it seems odd it is hiding the pictures, but not the text. I noticed in the jquery code there is a lot of code that shows hiding the first.id or last.id, and not much about first.text or last.text. Let me be clear, I don't know coding, so that may have absolutely

[jQuery] attr() on link crashing IE6

2009-07-20 Thread Hector Virgen
I am building a page that loads a css file through javascript. To help prevent flash of unstyled content[1], I am loading the CSS file as early as possible (before document.ready()). I am using jQuery 1.3.2. In Firefox 3.5.1 and Chrome 2.0.172.37 this is working properly, but in IE6 the browser

[jQuery] Re: attr() on link crashing IE6

2009-07-20 Thread Hector Virgen
This seems possible with vanilla javascript (IE6 does not crash). // Vanilla Javascript -- works in IE6 var link = document.createElement('link'); link.type = 'text/css'; link.href = 'foo.css'; link.rel = 'stylesheet'; link.media = 'screen';

[jQuery] Re: jquery ui dialog get element from button

2009-07-20 Thread Mean Mike
can I see the html that goes with this code ? On Jul 18, 4:48 am, Carlo Landmeter clandme...@gmail.com wrote: Thanks for tip for my vars. I have tried the code you provided but this does not work. When i click my delete button it will complain that somevar is not set. So i guess it means the

[jQuery] Re: attr() on link crashing IE6

2009-07-20 Thread James
If I remember right, IE6 has issues with creating elements without using createElement() and adding attributes to them afterwards. Using the method that Hector specified to create the element should prevent the issue from occuring in IE6. On Jul 20, 8:59 am, Hector Virgen djvir...@gmail.com

[jQuery] Anyone has a fix for the IE7 bug where you have two rows?

2009-07-20 Thread ColherdePau
Hello, I think there is a problem where if there are lots of subitems i get two rows. If an item in the first row has a submenu it opens as dropdown right below the item. This works good in all browser except in ie6/7. Here I have the problem that the li submenu navbar item in the second row

[jQuery] Loading images into a div via scrollable plugin

2009-07-20 Thread huminuh83
I'm new to using jquery and am trying to learn a few tricks. I am currently using the scrollable jquery plugin to scroll some images of thumbnails in a gallery. What I'm trying to do now, is figure out how to load the large version of those thumbnails into a div when they are clicked. Here is a

[jQuery] Need help with a custom selector to bind ajax callbacks

2009-07-20 Thread Rodrigo Tassinari de Oliveira
Hello everyone, I'm stuck with an annoying problem in this webapp I'm developing. I've created a small code to be called automagically on every ajax request, which shows a loading... div overlay while the ajax request is being processed. This works fine, and the code used can be seen in this

[jQuery] JQuery DatePicker UI and ThickBox Problems

2009-07-20 Thread Robin Malott
Hello - I've recently started using both the newest DatePicker and Thickbox. I'm having a problem getting the datepicker to appear in my thickbox (I'm using the ajax thickbox). Unfortunately I can't give the actual site since it's for an intranet site at work. If I look at the page itself,

[jQuery] Need help with a custom selector to bind ajax callbacks

2009-07-20 Thread Rodrigo Tassinari de Oliveira
Hello everyone, I'm stuck with an annoying problem in this webapp I'm developing. I've created a small code to be called automagically on every ajax request, which shows a loading... div overlay while the ajax request is being processed. This works fine, and the code used can be seen in this

[jQuery] Scrolling between images in list item

2009-07-20 Thread Bart Schutte
Hi all, I have a few images and 2 anchors sitting in a list item. In the list item there's only one picture visible at a time and the 2 anchors are used to scroll back and forth trough the pictures in such a way that if the last image is reached the first one displays again and ofcourse the

[jQuery] Prepending a table row when minus image is clicked

2009-07-20 Thread Colin C.
I've got a question on how to prepend a table row above the row in which a plus sign image is clicked. If the user hides the row again with the minus image, hide the prepended row too. Ultimately I would like this to display for every record row except the first row. The table row I want to

[jQuery] FCKEditor Plugin: Switch to source mode on startup

2009-07-20 Thread klammeraffe
http://dev.fckeditor.net/ticket/593 shows, how to switch to source mode on startup. is there any possibility to do this witch the FCKEditor Plugin?

[jQuery] Ajax loaded pages..

2009-07-20 Thread Spiatrax
Ok, i got problem. When i load some page with jquery ajax i cant use javascript on loaded page. For example, when i load gallery.htm in some div in index.html, lightbox wont work. Is this usual or..?

[jQuery] jQuery Tab problem

2009-07-20 Thread Ganex
Hi i am using jquery in my app, i have a big time problem with my tab ordering. I am not using any plugin for tab ordering but, I'm using AutoComplete though ... i am using facebook search token plugin also .. When i press tab in my text fields and prepare search tokens, suddenly i loose my

[jQuery] Username availability check and form validation

2009-07-20 Thread psykeeq
So I have a JQuery/ajax username availability check function which calls a file check.php that scans the database for existing username and lets you know if the one typed in is occupied or not. And this availabilty check is inside a registration form witch has some simple validation rules like

[jQuery] jQuery Cycle Plugin and Links

2009-07-20 Thread Mescalero
I would like to add another attribute to the img tag called link. This attribute would define where the image would link to if someone clicks the image. Then i could do something like: .append('p' + this.alt + ' a href=' + this.link +'Read more ›/p'); Does anyone know what/where i can add in

[jQuery] Custom Events Fired From Element Inside of IFRAME

2009-07-20 Thread Ryan
I have an iframe in a page which contains another page from within my application. The iframe contents include a button that, when clicked, will trigger a custom event on the parent document. While I can listen to the click event on the button from the IFRAME parent, i cannot listen to the

[jQuery] Re: My new website AllJobsXChange.com developed with Jquery

2009-07-20 Thread MauiMan2
You can use ending tags in HTML 4.01. It helps for DOM reasons to know where an element begins and ends. On Jul 20, 10:29 am, son sco0...@yahoo.com wrote: Rob, Thanks. I have used the !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; since I

[jQuery] Reg Hint Box

2009-07-20 Thread santosh
Hi All, I am new to jquery,recently i used jquery hintbox to get data dynamicaaly from data base using jsp and html.how to solve this application Thanks and Regards Santosh M

[jQuery] Can't select checked checkboxes

2009-07-20 Thread SvenV
I don't get it In my page I have several checkboxes like this one: input id=item-8 type=checkbox/ This is my Jquery code: function ShowSelected() { var ids; $([id^='item-'][checked]).each(function(){ids = ids +, +$ (this).attr(id).split('-')[1];}); alert(ids); } This

[jQuery] Re: Username availability check and form validation

2009-07-20 Thread James
The code you provided is just the check when the field has the blurred event called. Are you also doing the check when the form is submitted? You have to do some kind of check on form submit, and if it doesn't pass, do a return false; and the form should not be submitted. On Jul 20, 2:28 am,

[jQuery] Re: input fields don't work after using $load()

2009-07-20 Thread James
Read: Why do my events stop working after an AJAX request? http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F On Jul 19, 8:31 pm, James jrbrayjr2...@gmail.com wrote: I am using the $(load) function to populate a div in my HTML with form.  

[jQuery] Re: Can't select checked checkboxes

2009-07-20 Thread Hector Virgen
Try using :checked instead of [checked] $([id^='item-']:checked) -- Hector On Mon, Jul 20, 2009 at 9:09 AM, SvenV sven.vanoirb...@gmail.com wrote: I don't get it In my page I have several checkboxes like this one: input id=item-8 type=checkbox/ This is my Jquery code: function

[jQuery] Re: Can't select checked checkboxes

2009-07-20 Thread SvenV
Thanks, that did it On 20 jul, 22:06, Hector Virgen djvir...@gmail.com wrote: Try using :checked instead of [checked] $([id^='item-']:checked) -- Hector On Mon, Jul 20, 2009 at 9:09 AM, SvenV sven.vanoirb...@gmail.com wrote: I don't get it In my page I have several checkboxes like

[jQuery] Re: Get the value of the option elements

2009-07-20 Thread Hector Virgen
I've run into this problem too and found that I get better results by accessing the value attribute instead of using .val(): $('#aUsers option:selected').each(function() { console.log('user: ' + $(this).attr('value')); }); -- Hector On Mon, Jul 20, 2009 at 2:40 AM, debussy007

[jQuery] Re: Username availability check and form validation

2009-07-20 Thread Anoop kumar V
Also - maybe you have a typo - should the line not be: else if(data=='yes') instead of else if(data='yes') Thanks, Anoop On Mon, Jul 20, 2009 at 3:59 PM, James james.gp@gmail.com wrote: The code you provided is just the check when the field has the blurred event called. Are you

[jQuery] Re: Username availability check and form validation

2009-07-20 Thread Hector Virgen
I suggest disabling the submit button so the user won't be surprised when clicking it has no affect. -- Hector On Mon, Jul 20, 2009 at 12:59 PM, James james.gp@gmail.com wrote: The code you provided is just the check when the field has the blurred event called. Are you also doing the

[jQuery] Re: Username availability check and form validation

2009-07-20 Thread Jörn Zaefferer
The validation plugin (http://bassistance.de/jquery-plugins/jquery-plugin-validation/) has a remote method (http://docs.jquery.com/Plugins/Validation/Methods/remote#url has links to demos, too) for exactly that purpose. Jörn On Mon, Jul 20, 2009 at 2:28 PM, psykeeqales.fa...@gmail.com wrote:

[jQuery] Re: jQuery Cycle Plugin and Links

2009-07-20 Thread Charlie
you can use the "before" and "after" options in the API to write functions that trigger on each slide to do what you want Mescalero wrote: I would like to add another attribute to the img tag called "link." This attribute would define where the image would link to if someone clicks the

[jQuery] tablesorter zebra issue in IE7/IE8

2009-07-20 Thread postme
Hi everybody, I'm using the tablesorter plugin with the zebra widget and I've run into an issue with IE7/IE8. I'm setting a number of tablerow (tr) elements to invisible and then run a tablesorter update + appendCache action to make sure the zebra widget picks up on the changed structure of the

[jQuery] Noob question about wrapped sets

2009-07-20 Thread nyte999
Going through the tutorials on this website and others, I've found some syntax that I don't understand and is never explained. Usually wrapped sets look like this: $(#myElement) But once in a while they look like this $(#myElement)[0] Here are a few examples of it in use:

[jQuery] ajaxForm/Submit Window.Document

2009-07-20 Thread Rick Seymour
Using jQuery Form Plugin on a form that submits text file fields to a remote server, the resulting XML/JSON returned does not appear to be available to jQuery. As demonstrated via error: function(XMLHttpRequest, textStatus, errorThrown) { console.log(errorThrown); Error: Permission denied for

[jQuery] thickbox + jquery help

2009-07-20 Thread mcbig
hello i would like to customize a carrousel with thickbox by adding a description to each image but i m a bit lost, i would be VERY grateful to anyone helping me jQuery is 1.2.6 here is part of my code var mycarousel1_itemList = [ {url: ./images/deunan_evening_dress_s.jpg, title: fff,

[jQuery] TableSorter. Pager issue.

2009-07-20 Thread Ali
Ok, I have tried to solve this issue for few hours without any success. I have latest Jquery, TableSorter and Pager files. This is whats going on. when I use table headers to sort its working flawless but when I use Pager (at the bottom, page navigation and table size) I am getting Javascript

[jQuery] Re: ajaxForm/Submit Window.Document

2009-07-20 Thread Mike Alsup
I can see the HTTP POST Response in Firebug. How can I access the returned text? If it's from a different domain, you can't.

[jQuery] Re: Loading images into a div via scrollable plugin

2009-07-20 Thread Charlie
if you wrap your thumbs in scrollable with an a tag like this a class="thumb" href="" img src="" //a you can change the src of the big image you load the page with like this ( your large pictures are already in div id="pictures" $(".thumb").click( function () { //because using class name

[jQuery] Re: jQuery Cycle Plugin and Links

2009-07-20 Thread Mike Alsup
I would like to add another attribute to the img tag called link. This attribute would define where the image would link to if someone clicks the image. Then i could do something like: .append('p' + this.alt + ' a href=' + this.link +'Read more ›/p'); Does anyone know what/where i can

[jQuery] Re: Noob question about wrapped sets

2009-07-20 Thread Jules
$(#myElement) returns jQuery object and $(#myElement)[0] returns DHTML object. Here is a sample on how to access alt attribute jQuery $(#myElement).attr(alt) vs DHTML $(#myElement)[0].alt Both code return the same value. Correct me if i am wrong, I think the DHTML version is faster than the

[jQuery] Re: Loading images into a div via scrollable plugin

2009-07-20 Thread huminuh83
brilliant! That worked. Thanks so much for your help and explaining it so thoroughly. Who knew it was so simple...I need to learn this stuff badly. Charlie Tomlinson wrote: if you wrap your thumbs in scrollable with an lt;agt; tag like this lt;a class=thumb href=big_image1gt;

[jQuery] Rename a file name

2009-07-20 Thread Dave Maharaj :: WidePixels.com
I was wondering if someone could point out how to rename a file name. In the script I am using I see function fileFromPath(file){ return file.replace(/.*(\/|\\)/, ); } which replaces characters but how would I completely rename the file I tried: function fileFromPath(file){

  1   2   >