[jQuery] Re: Get url from iframe

2009-10-19 Thread Jonathan Vanherpe (T & T NV)
rupak mandal wrote: no because after clicking on any search link, it was redirect to new web page. But src remains same. On Mon, Oct 19, 2009 at 9:45 PM, brian > wrote: I believe you can get it from the "src" attirbute. On Mon, Oct 19, 2009 at 7:37 AM,

[jQuery] Re: Calling a user-defined function

2009-10-19 Thread Giovanni Battista Lenoci
cachobong ha scritto: How do i use a function like this? $.clientCoords = function() { var dimensions = {width: 0, height: 0}; if (document.documentElement) { dimensions.width = document.documentElement.offsetWidth; dimensions.height =

[jQuery] Re: Get url from iframe

2009-10-19 Thread rupak mandal
no because after clicking on any search link, it was redirect to new web page. But src remains same. On Mon, Oct 19, 2009 at 9:45 PM, brian wrote: > > I believe you can get it from the "src" attirbute. > > On Mon, Oct 19, 2009 at 7:37 AM, Rupak wrote: > > > > Hi all, > > > > I have an ifram in

[jQuery] Re: safari flashes hidden text from hide()

2009-10-19 Thread Karl Swedberg
It's all about where you put the script and style in relation to each other and in relation to other elements. Take a look at my modification: http://test.learningjquery.com/brisk.html I added a one-liner before any of the stylesheets are loaded. Seems to work in Safari for me. --Karl ___

[jQuery] Re: Change row colors of table based on content

2009-10-19 Thread Charlie
I try to learn as much as I can from this sort of exercise. I made a couple of revisions to previously untested version, went back and made a couple of syntax and code fixes to previously untested suggestion I only submit this because it works on a limited sized table with simple names, not

[jQuery] Re: JSpec and jQuery fadeOut

2009-10-19 Thread tjholowaychuk
Hey dude, if you want to repost on JSpec's group I can help you out :) at least that way its historically there for others who need help (lots of people need help with the DOM stuff) On Oct 17, 2:15 pm, finneycanhelp wrote: > To add to this: >   I know I can use the callback argument of the fade

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread ReynierPM
Conrad Cheng wrote: install firebug in your ff and you can see your js errors I have installed but can't find where to see errors -- Saludos ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread Conrad Cheng
install firebug in your ff and you can see your js errors On Tue, Oct 20, 2009 at 11:05 AM, ReynierPM wrote: > > Bi Jing wrote: > >> Weird, Its working on my IE/FF >> > > I'm working with FF 3.5.3 also > > This is my JS code: > > > $().ready(function() { > $('.corner').corner(); > > $('#paypal_

[jQuery] Re: Change row colors of table based on content

2009-10-19 Thread Charlie
Bi Jing wrote: I like this issue and following is my draft implement, its working on IE/FF, hope it helps Firstly, I suggest adding a class to COSTUMER column that gonna making things easier. HTML sample code:         1         dd         cc         ss         ss                    

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread ReynierPM
Bi Jing wrote: Weird, Its working on my IE/FF I'm working with FF 3.5.3 also This is my JS code: $().ready(function() { $('.corner').corner(); $('#paypal_form').validate({ rules: { cc_number: { required: true, creditcard2: function() { return

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread Bi Jing
Weird, Its working on my IE/FF Same First Name: Middle Name: function doCopy(){ $("#first_name1").val($("#first_name").val()) } Do you get any js errors during viewing page. On Tue, Oct 20, 2009 at 10:54 AM, ReynierPM wrote: > > Bi Jing wrote: > >> Sorr, I made mistake, there ar

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread ReynierPM
Bi Jing wrote: Sorr, I made mistake, there are two wrong coding No.1, onclick="doCopy()" No.2, $("#user2_name").val($("#user1_name").val()) On Tue, Oct 20, 2009 at 10:28 AM, ReynierPM wrote: Nothing still not working -- Saludos ReynierPM

[jQuery] Re: Weird z-index problem JQuery dialog + Text field

2009-10-19 Thread Bi Jing
Could please provide some code fragments? Maybe you should set z-index of the whole Dialog element. And please press F12 in IE8, and inspect dialog element, what is the height of it and whether the dialog already overlapped the links. Becoder. On Tue, Oct 20, 2009 at 4:01 AM, Mesquite wrote: >

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread Bi Jing
Sorr, I made mistake, there are two wrong coding No.1, onclick="doCopy()" No.2, $("#user2_name").val($("#user1_name").val()) > $("#user2_pass").val($("#user1_pass").val()) On Tue, Oct 20, 2009 at 10:28 AM, ReynierPM wrote: > > Bi Jing wrote: > >> HTML code: >> >> Copy >> >> >> >> >> >> >

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread ReynierPM
Charlie Griefer wrote: Your selectors are incorrect. $('first_name1') looks for a element in the DOM (there is none). You're referencing by ID, so you want to preface the ID with a # sign (similar to CSS). $('#first_name1').val($('#first_name').val()) Fixed and still without working -- Sa

[jQuery] Calling a user-defined function

2009-10-19 Thread cachobong
How do i use a function like this? $.clientCoords = function() { var dimensions = {width: 0, height: 0}; if (document.documentElement) { dimensions.width = document.documentElement.offsetWidth; dimensions.height = document.documentElemen

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread Charlie Griefer
On Mon, Oct 19, 2009 at 7:28 PM, ReynierPM wrote: > > Isn't working. > > HTML Code: > Same id="same" onclick="doCopy" /> > > First Name: name="first_name" id="first_name" value="" size="" /> > Middle Name: id="first_name1" value="" size="" /> > > JS Code: > function doCopy(){ > $("first_name1

[jQuery] Re: Problem with animate after submit in opera

2009-10-19 Thread Karl Swedberg
Is the link's href set to another page? If so, I'm surprised it works in any browser. You would need to return false after your animate methods: $(document).ready(function(){ $(".action").click(function(){ $("#panel") .animate({top:"0px"}, 500)

[jQuery] Re: Can't insert JavaScript using html function

2009-10-19 Thread Kiswono Prayogo
document.write would replace anything on the document.. it's not a good practice to use that ^^ IMHO.. On Tue, Oct 20, 2009 at 9:29 AM, Bi Jing wrote: > No, Its should work. Maybe you get some JS error, please check. > > Becoder. > > > On Tue, Oct 20, 2009 at 7:43 AM, Kiswono Prayogo wrote: > >>

[jQuery] Re: Can't insert JavaScript using html function

2009-10-19 Thread Bi Jing
No, Its should work. Maybe you get some JS error, please check. Becoder. On Tue, Oct 20, 2009 at 7:43 AM, Kiswono Prayogo wrote: > why don't you use this instead:$("#test").html("Hi there > "+username+"."); > > > On Mon, Oct 19, 2009 at 10:06 PM, Ron wrote: > >> >> Hi all. I stumbled upon some

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread ReynierPM
Bi Jing wrote: HTML code: Copy JS code: function doCopy(){ $("user2_name").val($("user1_name").val()) $("user2_pass").val($("user1_pass").val()) } Isn't working. HTML Code: Same id="same" onclick="doCopy" /> First Name: name="first_name" id="first_name" value="" size="" /> Mi

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread Bi Jing
HTML code: Copy JS code: function doCopy(){ $("user2_name").val($("user1_name").val()) $("user2_pass").val($("user1_pass").val()) } HTH. Becoder. On Tue, Oct 20, 2009 at 10:02 AM, ReynierPM wrote: > > Hi every: > I need when a user pick a checkbox the content in one field is copied

[jQuery] Re: Change row colors of table based on content

2009-10-19 Thread Bi Jing
I like this issue and following is my draft implement, its working on IE/FF, hope it helps Firstly, I suggest adding a class to COSTUMER column that gonna making things easier. HTML sample code: 1 dd cc ss ss 2 22 33

[jQuery] Copy content from one field to another

2009-10-19 Thread ReynierPM
Hi every: I need when a user pick a checkbox the content in one field is copied to another field in the same form. For example suppose this: __ checkbox --- User 1 Name: __ Pass: __ --- User 2 Name: __ Pass: __ I want when user marks or picks the c

[jQuery] Re: Can't insert JavaScript using html function

2009-10-19 Thread Kiswono Prayogo
why don't you use this instead:$("#test").html("Hi there "+username+"."); On Mon, Oct 19, 2009 at 10:06 PM, Ron wrote: > > Hi all. I stumbled upon something which may be by design in jQuery > for security reasons, it may be the browsers doing it, but... I found > that any JavaScript I try to pu

[jQuery] Re: Json works in firefox but not in ie

2009-10-19 Thread Shawn
Common problem. It was blogged about in Feb last year (http://grover.open2space.com/node/207). Still, I'm glad you found the solution. Shawn Patrik wrote: Problem solved it was an extra , after the last {optionValue: '". $b ."', optionDisplay: '". $b ."'} in the php file. firefox must hav

[jQuery] Re: easing 1.3 plugin how to implement pls?

2009-10-19 Thread jessie
Bump * anyone please? On Oct 19, 9:23 am, jessie wrote: > Hi > > I have fancybox lightbox installed and i wanted a different transition > effect.  So i've installed the easing 1.3 plugin > > I have read and re-read the instructions but i don't really understand > where i need to make the change

[jQuery] JQuery, JFeed, Blogger

2009-10-19 Thread rob
Hello, I've been working on this for a while and I can't seem to figure this out. I'm trying to use the jFeed plugin to access an RSS feed from Blogger. I'm not trying to use any authentication, I just want to use public read-only access. I tried some real simple examples at first (using jFeed

[jQuery] Re: Change row colors of table based on content

2009-10-19 Thread Charlie
my starting thought would be use the name as a class, assign a color to class perhaps from an array of colors so you could have 10 colors and use them in order for first ten unique names, then repeat for next 10 unique names use a length ( or size) test to see if that class already exists, if

[jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-19 Thread Charlie
I don't know a lot about screen reader issues, however there is no reason not to be able to build a mega menu inside UL/LI structure and this has been done in superfish. You can put divs inside an li, with columns , images, H tags,  whatever you want and is all valid. Do whatever css you want

[jQuery] Re: Change row colors of table based on content

2009-10-19 Thread Jeffrey Kretz
Put together a hashtable of colors based on the customer name. Something like this (untested): var hash = {}; $('#tableid tr').each(function(i){ var tr = $(this); var customer = $.trim(tr.children('td:eq(1)').html()); var color = hash[customer]; if (!color) { has

[jQuery] Re: Create a custom rule

2009-10-19 Thread Giovanni Battista Lenoci
Jörn Zaefferer ha scritto: The first argument, "value", refers to the actual value-attribute. You'll probably want to use the third argument, eg. "param": $.validator.addMethod('hasClass', function(value, element, param) { reurn $(element).hasClass(param); }, jQuery.format('Please check the b

[jQuery] Superfish plugin: some limitations that could be addressed

2009-10-19 Thread Florent V.
Hello, This is a message for Joel Birch, author of the Superfish plugin, to developers who may assist him (if any). It may be interesting to people working on similar plugins, dropdown navigation, etc. Superfish is a great plugin (thank you Joel for sharing it). It takes care of a lot of details

[jQuery] Change row colors of table based on content

2009-10-19 Thread Gewton Jhames
Anybody want to discuss a way to change row colors of table based on content, for example: +-|---+ |acess|COSTUMER | |-| | 1 | joseph | | 2 | mary| | 3 | john| | 4 | joseph

[jQuery] Re: safari flashes hidden text from hide()

2009-10-19 Thread de...@gravityswitch.com
Thanks for the reply. I tried implementing the fix but Safari is still flashing the hidden text. The updated files are at the same URLs: Here is the page: https://216.25.8.35/ And here is the js code: https://216.25.8.35/gsuniverse/templates/javascripts/readmore.js Am I missing something? de

[jQuery] Weird z-index problem JQuery dialog + Text field

2009-10-19 Thread Mesquite
Hi, I have a weird problem with JQuery and IE8. When I open my JQuery Dialog, I have some input text fields in this dialog. They all look fine. Under the JQuery Dialog, the main screen contains some links. When I hover over the text fields in the dialog, the hovering(and clicking) of the links o

[jQuery] Another quick update to CFJS

2009-10-19 Thread Chris Jordan
Hey folks, I've made another quick update to the DateFormat function in CFJS. You can read about it on my blog if you like (http://cjordan.us/index.cfm/CFJS). It's at version 1.1.12, and as always is available from http://cfjs.riaforge.org. Cheers! Chris

[jQuery] Re: what does this selector mean ?

2009-10-19 Thread Karl Swedberg
On Oct 18, 2009, at 2:05 AM, Michael Geary wrote: $('div',this) is simply a confusing way of writing $ (this).find('div'). The only reason it exists at all is for "historical reasons": it was added to jQuery before the .find() method existed. Never use $('div',this) in your code. Always us

[jQuery] Re: Create a custom rule

2009-10-19 Thread Jörn Zaefferer
The first argument, "value", refers to the actual value-attribute. You'll probably want to use the third argument, eg. "param": $.validator.addMethod('hasClass', function(value, element, param) { reurn $(element).hasClass(param); }, jQuery.format('Please check the button')); Also a bit simpler

[jQuery] Create a custom rule

2009-10-19 Thread Giovanni Battista Lenoci
Hi, I'm trying to create a new validation rule to check if a button has a class. I try to explain the scenario. I have a button that makes an ajax call to check the availability of a product. When the app loads the button as class "to_check", when the button is clicked an ajax call is fire

[jQuery] Re: Where to access datepicker?

2009-10-19 Thread Andrew243
Hi Charlie, The Google link works -- thanks, I did not understand how to contruct the Google URL from their site. What URL can I use to link to datepicker? On Oct 19, 12:37 pm, Charlie wrote: > path for jQuery is right in link I showed you > src="[jQuery] Re: this.remove
get it, thx guys!

[jQuery] Re: Call back function for Selectbox not working on IE..

Resolved On Oct 19, 8:51 am, zebamba wrote: > > $(document).ready(function() > { >    $("#place").change(function() >     { >       $.post("types.php",{ >           local:$('#place').val() >           } ,function(data) >         { >          $('#types').html(data); >                  $('#ty

[jQuery] Re: this.remove

I this you want $(this).remove(); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Krommenaas Sent: Monday, October 19, 2009 10:11 AM To: jQuery (English) Subject: [jQuery] this.remove I was wondering why in a link's click event... $

[jQuery] Re: this.remove

2009/10/19 Krommenaas : > > I was wondering why in a link's click event... >  $('a.').click( function() { > > this won't work... >   this.remove() > > but this does work... >  $('#'+this.id).remove(); > > as will this... >    $('a[name='+this.name+']').remove(); > > It's not a problem since I have

[jQuery] this.remove

I was wondering why in a link's click event... $('a.').click( function() { this won't work... this.remove() but this does work... $('#'+this.id).remove(); as will this... $('a[name='+this.name+']').remove(); It's not a problem since I have these work-arounds, I'm just trying to unde

[jQuery] Re: Json works in firefox but not in ie

Problem solved it was an extra , after the last {optionValue: '". $b ."', optionDisplay: '". $b ."'} in the php file. firefox must have ignored it while ie expected more. On 19 Okt, 16:49, Greg Riley wrote: > You are setting options inside a function and then trying to reference > it outside of

[jQuery] Re: jquery HTML file reading

will this refresh the page ? On Sun, Oct 18, 2009 at 10:33 PM, Evgeny Bobovik wrote: > > See example: > $.ajax({ > type: "POST", > url: "SERVLET.do", > data: "id=1&location=Minsk", > success: function(msg){ > //'msg' - is your returned html file > $(document).html(msg); // th

[jQuery] Re: Where to access datepicker?

path for jQuery is right in link I showed you "http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"> have to pull full UI.js if using Google but is probably better solution than pulling from sites you are using now link on same page Andrew243 wrote: Hi Charlie, Thanks -- bu

[jQuery] Re: Json works in firefox but not in ie

Thanks but it didnt help and the reference is inside of the funktion missed to put }) }) in my message. nothing inside the getJSON function will work after the closing } in the for loop if i put alert("after"); won't show or anything else. On 19 Okt, 16:49, Greg Riley wrote: > You are setting

[jQuery] Re: jQuery UI datepicker

Hi there, Would you mind posting this question to the jquery-ui google group if you haven't done so already? That group is dedicated to questions such as yours that are specifically related to jQuery UI. http://groups.google.com/group/jquery-ui/ Thanks! --Karl Karl Swedberg

[jQuery] Re: Get url from iframe

I believe you can get it from the "src" attirbute. On Mon, Oct 19, 2009 at 7:37 AM, Rupak wrote: > > Hi all, > > I have an ifram in a page. iframe contains google.com (google search). > from there if the user search for a "key word", i and click on a > link.Is there a way to get the "url" of new

[jQuery] Re: Where to access datepicker?

Hi Charlie, Thanks -- but what is the HTML to use Google for jQuery and also for datepicker. I now use: http://code.jquery.com/jquery-latest.js";> What is the equivalent for Google, and what would it be for datepicker? A On Oct 19, 11:31 am, Charlie wrote: > http://code.google.com/api

[jQuery] Re: password initial value without masking "****"

Instead of replacing the input, display a label above it. See http://wiki.jqueryui.com/Watermark Jörn On Mon, Oct 19, 2009 at 4:17 PM, Liam Potter wrote: > > Here is how I do it. Just markup the form like normal (I use a definition > list to lay out my forms) > > $("input:password").each(funct

[jQuery] Call back function for Selectbox not working on IE..

$(document).ready(function() { $("#place").change(function() { $.post("types.php",{ local:$('#place').val() } ,function(data) { $('#types').html(data); $('#types').focus(); }); }); }); .html(data) It does work fi

[jQuery] Re: Why does slideUp set also set display: block?

something wrong here slideUp is an animation  hide function that returns inline style "display:none" are you meaning slideDown? If so what causes problem? Shhnap wrote: Essentially, whenever I run the slideUp() function the css 'display' property of that element is set to block. Howev

[jQuery] Can't insert JavaScript using html function

Hi all. I stumbled upon something which may be by design in jQuery for security reasons, it may be the browsers doing it, but... I found that any JavaScript I try to put into the html of an object is ignored. For example, say username is a variable that was already defined with the user's name:

[jQuery] .html(data) in Select Box Not working

I have this function: $(document).ready(function() { $("#place").change(function() { $.post("types.php",{ local:$('#place').val() } ,function(data) { $('#types').html(data); $('#types').focus(); }); }); }); I do

[jQuery] Re: Where to access datepicker?

http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery using Google excellent option since if user already has been to site using same source will have it cached probably not a good idea pulling your scripts from jquery site Andrew243 wrote: I'm using jquery, and have treev

[jQuery] jQuery.get does not return proper JSON

Hi, I am using jQuery.get to make an AJAX request to the server which should return a JSON object, but it is interpretated by jQuery as a string, not an object. Here is the javascript code I use: $.get(this.href, function(data) { console.log(data); console.log(data.votes_for); console.log

[jQuery] Re: jquery validation using thickbox

I've encountered a similar problem with something I'm doing. Current project is using asp.net 2 webforms which is a pain but that's the boundaries of this project. Context: I have a Gridview which is databound with some html buttons and then these buttons are wired up in jquery so that when cli

[jQuery] Jquery Simple Accordion Script (No Plugins)

Good Day, I've been working around Jquery for a little while now and I'm creating a "News Accordion" menu to go on my site. The accordion works fine in all browsers, however there is a bouncing effect if Click on the same news article. Here is the snippet of the first code I was working on: Cod

[jQuery] Re: Json works in firefox but not in ie

You are setting options inside a function and then trying to reference it outside of that function. Try putting var options = ''; before that first line. On Oct 19, 10:22 am, Patrik wrote: > Hi, > I have this code and it works well in firefox but in IE it dosn't. > How do I make it work in IE?

[jQuery] Problem with animate after submit in opera

Hello, Recently I encountered a problem in Opera: The browser does not run any javascript after a page is submitted. For example if you use animate on an anchor when you click on that anchor the animate is never run unless the href is set to "#". This is the code: http://ajax.googleapis.com/aja

[jQuery] Need minimal comet example

I don't know much about javascript or jquery, but I was wondering if I can get something like this to work with jquery. It uses the prototype library: http://www.zeitoun.net/articles/comet_and_php/start I have their simple example working, but now need to modify it and am running into weird prob

jquery-en@googlegroups.com

http://codingforums.com/showthread.php?t=160798

jquery-en@googlegroups.com

I am hoping someone can guide me in the right direction. I need a script or function that will capture the X & Y position of the mouse click and set it in a variabvle that I will store in DB. Caveat - I need it to be X&Y position relative to the top left position of a image *(floor plan map)...so

[jQuery] Json works in firefox but not in ie

Hi, I have this code and it works well in firefox but in IE it dosn't. How do I make it work in IE? If I put alert(options) inside the loop I get all the values I want so this far it's working but outside the loop if i call alert(options) nothing happens. why? $("select#kod").change(function(){

[jQuery] Re: password initial value without masking "****"

Here is how I do it. Just markup the form like normal (I use a definition list to lay out my forms) $("input:password").each(function(){ var $currentPass = $(this) $currentPass.css({opacity:0}); $currentPass.before('class="removeit" style="position:absolute;z-ind

[jQuery] Re: jQuery/JSON forms issue: tries to download response

On Oct 12, 8:59 am, MorningZ wrote: > "This change failed to remedy the problem" > > As it shouldn't... > > because the bottom line is: the browser makes the request and the > browser receives the request, and when the browser sees "text/json" > come back from the server, it has no idea what to

[jQuery] Re: Where to access datepicker?

Hi, try the jquery UI http://jqueryui.com/ they have a datepicker ther When you donwload you can look under development-bundle/demos/datepicker On Mon, Oct 19, 2009 at 3:07 PM, Andrew243 wrote: > > I'm using jquery, and have treeview working using src="http:// > dev.jquery.com/view/trunk/plugins

[jQuery] Re: jquery validation using thickbox

Try this link: http://stackoverflow.com/questions/786332/jquery-validation-not-working-in-thickbox-display-ajax-call Also you could just post the question on StackOverFlow.com There are lots of jQuery experts to help and the response time is awsome. --Phill Mattycrocks wrote: > > I've encoun

[jQuery] Re: password initial value without masking "****"

ah yes i forgot. you would get access denied when tried to change an input type property the best way is to have two input types and just hide one and show the other but i have a solution for you the html the css /*first we need to hide the

[jQuery] Where to access datepicker?

I'm using jquery, and have treeview working using src="http:// dev.jquery.com/view/trunk/plugins/treeview/jquery.treeview.js" Now I want to use datepicker, where can I access the .js file? I tried http://view.jquery.com/trunk/plugins/datepicker/jquery.datepicker.js, but that is not correct. My

[jQuery] Re: password initial value without masking "****"

Hi waseem! Thanks for your reply. Something's wrong with this line: $("#password").attr({type:'text'}); I tried changing to: $("#password").attr('type','text'}); but still no go. I have to comment out to get the other JS stuff on the site working. The rest of the code seems Ok. What could it

[jQuery] Re: Difference with two ways to select elements?

ok, let me understand you clearly. you want to change every option tag within a select to be a specific value ? if the method you mentioned above does not work try this : var obj = $(".myclass"); // use jquery to select your SELECT by class var opts = $("option", obj); // find all option tags with

[jQuery] Re: password initial value without masking "****"

// set the initial type to text $(".mypasswordfield").attr({ type:'text' }); // on user focus - change type to password $(".mypasswordfield").focus(function() { $(".mypasswordfield").attr({ type:'password' }); }); // on user blur - change type to back to text $(".mypasswordfield").blur(fun

[jQuery] Difference with two ways to select elements?

Hi All I am having a question and seeking some help from the group. What I want to do? - to set the SELECTS that match the citerias to be defaul option. 1: $("select[name^='start_me_']").val(0); 2: $("select[name^='start_me_']").each(function() { this.value = 0; }); I found 1 doesn't work in I

[jQuery] password initial value without masking "****"

Hi! I'm trying to achieve something like the Facebook first page (when you're not logged in). I'm using this simple function/plugin to clean the fields once you click them: $.fn.cleanField = function() { return this.focus(function() { if( this.value == this.defaultValue )

[jQuery] jQuery Accessible RIA

I posted this to jQuery a11y and Jörn Zaefferer advised me to post this to the en and ui groups. So here it is: A few month ago I asked a bunch of questions in the a11y group to support my master thesis. I finished my work 6 weeks ago and now im ready to show my results: jQuery Accessible RIA, a

[jQuery] jCarousel Two columns

Hi, this is my first post here I am trying to use jCarousel with Two columns: http://vencanice.eu/galerija.php becaus there is always two pictures of one bride (front and back). the order: first li is 1 seconnd is 2 1,2 3,4 5,6 I know everything... almost ... can be done ... but how?

[jQuery] Re: easing 1.3 plugin how to implement pls?

Ok after reading a bit i know realise that i have to animate and add the motion Does anyone know how i would do this please? This is what i have for my fancybox to which i'd like to animate differently to the standard swing. jQuery(function($) { $("a.group").fancybox({ "overlayShow" : true });}

[jQuery] Get url from iframe

Hi all, I have an ifram in a page. iframe contains google.com (google search). from there if the user search for a "key word", i and click on a link.Is there a way to get the "url" of newly open page inside the iframe. Plz help me.. thanks Rupak

[jQuery] Sortable: get the element that received the sortable?

Hi everyone, I'm implementing a drag and drop newsletter, where my users can drag content to different areas of a template. Depending on where they drop the content, I need to add different HTML attributes to some of the code (essentially need to make the images float:left if they're dropped int

[jQuery] Re: Adding selectors to $(this)?

Thanks James, the context parameter was what I needed. ui.item is an object returned by Sortable containing the elements used in sorting. On Oct 13, 10:40 pm, James wrote: > The jquery selector has a second parameter > 'context':http://docs.jquery.com/Core/jQuery#expressioncontext > > such tha

[jQuery] jQuery UI datepicker

Hi everybody, Is there any way to have the jQuery UI datepicker appearing as an image at first and then whenever we click on that image, the calendar will appear in a floating div (i.e. everything on the page isn't moved)? Thank you.

[jQuery] Re: Anybody knows how to do a jcarousel vertical with autoscrolling?

Well I finally found the problem. I modified the jquery.carousel.js. The method startAuto() to call itself when the wrapper was circular. Cheers!!! On 18 oct, 16:20, marcello wrote: > Hello guys!!! > > I am a beginner here with JQuery and recently discovered this jquery > plugin. I found it ve

[jQuery] Facebox Youtube stopVideo

I've got a page that opens a youtube video with facebox. The facebox closes correctly but the video doesn't stop playing. So the sound carries on even if the video isn't visible: This is the code I've tryed: You need Flash player 8+ and JavaScript enabled to view thi

[jQuery] .load contents of HTML fragment problem TD > LI

Ok here is a stumper I am trying to load the td contents from one page into an ordered list on another page I have a page called inc_menu.html with the following code menu 1 menu 2 then I have a page called loadMenu.html that looks like this http://ajax.googleapis.com/

[jQuery] Re: How to achieve this animation?

you could try the $().slideUp(500) and $().slideDown(500) On Mon, Oct 19, 2009 at 10:32 AM, Bi Jing wrote: > Hi Eric, > > What animation you talked about? Sorry I cant find it out, could you please > clear it? > > If you mention the menu. I think there already an excellent implement by > JQuery

[jQuery] Re: JQuery smooth anchor scrolling - modify to fadein once in position?

Maybe you need this plugin http://plugins.jquery.com/project/ScrollTo Becoder On Mon, Oct 19, 2009 at 3:12 AM, Justin S. Meyers < jus...@plasticmonument.com> wrote: > > This is the second time I've posted this. It didn't show up the first > time, so apologies for a possible duplicate in post. >

[jQuery] Re: How to achieve this animation?

Hi Eric, What animation you talked about? Sorry I cant find it out, could you please clear it? If you mention the menu. I think there already an excellent implement by JQuery UI. http://docs.jquery.com/UI/Accordion P.S. I'm from DaLian, please feel free to contact me directly. Hope that helps.

[jQuery] Re: AJAX API without XML?

Sure, jquery supports several popular response data types, not only xml, also HTML, text, jason even script. For more information, I suggest you check jquery official docs. Becoder. On Sun, Oct 18, 2009 at 1:21 AM, kidburla wrote: > > Hi, > > I understand that normally when you want to load a

[jQuery] Re: How to fade out page and show content

Hi Johnson http://docs.jquery.com/Effects/fadeIn Hope this helps. Becoder. On Mon, Oct 19, 2009 at 3:54 AM, Jerry Johnson wrote: > > Kinda like: http://famspam.com/facebox > Except, i want it to slowly fade out whole page, and slowly fade in > the content, vice versa > Any Ideas? >