[jQuery] Re: How can I add HTML tag from jQuery?

2008-01-14 Thread [EMAIL PROTECTED]
I don't know if there is any other way, this is not too elegant: $(.data).each(function() { var htmlstr = $(this).html(); $(this).html('a' + htmlstr + '/a'); }); On Jan 4, 12:43 pm, jQuery(new).to(me) [EMAIL PROTECTED] wrote: Hi, Please give me an idea how to do this: I want to add

[jQuery] ajax php selecting problem

2008-01-12 Thread [EMAIL PROTECTED]
hi, i am trying to select a objects that is generated with PHP through jQuery AJAX. but its not working any one please help me. thank you JQuery :: $(document).ready(function(){ $.ajax({ type: POST, url: demo_cal.php, data: fnum=2snum=4, success: function(msg){

[jQuery] Re: Superfish menu extremely slow/clunky in IE6 with wordpress

2008-01-11 Thread [EMAIL PROTECTED]
Hi Joel - I am still trying to find a solution to this problem. I just realize that in my previous post, I gave the wrong URL for the result of the change that I made... Check this: http://news1.pandesa.com/wp-content/themes/zenful_pandesa/test1.htm At the above URL, the menus are working

[jQuery] IE 6 select controls

2008-01-10 Thread [EMAIL PROTECTED]
I'm fairly new to using JQuery and JQuery UI and am having some difficulty. I'm trying to use a select control in a jquery dialog window $ (myDialog).dialog(). The problem arises in IE 6 when you have a sufficient number of options that it requires scrolling of the select control. IE will not

[jQuery] Bug with dimensions height() fn in IE7

2008-01-10 Thread [EMAIL PROTECTED]
This is a cross post from the UI mailing list -- I mistakenly put it there when it should have been here. Sorry about that! I have a div that has a height of 80%, and this line: $('.class:first').height() works fine in firefox, but when I try to use it in IE7 it always returns 1. Is there a

[jQuery] Re: Bug with dimensions height() fn in IE7

2008-01-10 Thread [EMAIL PROTECTED]
, h.constructor == String ? h : h + px ); }; }); Got it from here: http://dev.jquery.com/browser/branches/1.2/src/jquery/jquery.js On Jan 10, 2:30 pm, Brandon Aaron [EMAIL PROTECTED] wrote: The width and height methods are actually found in the core. If you are able ... Try using the latest

[jQuery] reload of main page

2008-01-10 Thread [EMAIL PROTECTED]
Hello, How can i make it happen, that after closing thickbox or something else the page reloads? my problem is that after loggin in the menu should get an other content.. i hope you understand what i mean... thx.

[jQuery] Re: load method doesn't work with amp; and doesn't validate

2008-01-09 Thread [EMAIL PROTECTED]
Aaahhh, so it's my own fault for coding sloppy. :-o Thanks! On Jan 8, 4:00 pm, Bob den Otter [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: When loading an url containing querystrings with jQuery's load method I first tried amp; but since that doesn't work, I'm now using . The problem

[jQuery] Re: jquery ui tabs (tabs 3) in conjunction with the new coda slider (1.1.1) troubles.

2008-01-09 Thread [EMAIL PROTECTED]
Using the off left technique worked! Thanks for all of your help. On Jan 9, 3:48 am, Klaus Hartl [EMAIL PROTECTED] wrote: On 9 Jan., 01:50, Josh Nathanson [EMAIL PROTECTED] wrote: Without looking at the code, my guess would be ye olde must rebind event handlers when loading content via

[jQuery] invoking an element dinamically

2008-01-09 Thread [EMAIL PROTECTED]
Hi everyone, I need assistance with some how-to. I'm new to jq, so a little help would be much appreciated. I have a function that receives a value each time an a href is clicked, for every click I get a different value, I want to use this value a ID in the td of a table, such td's are already

[jQuery] match element based on CSS value

2008-01-09 Thread [EMAIL PROTECTED]
How can I select an element based on it's CSS style value? For example, let's say I have an element absolute positioned at top=100px. How can I do something like the following? $(top=100px) thanks Jason

[jQuery] load method doesn't work with amp; and doesn't validate

2008-01-08 Thread [EMAIL PROTECTED]
When loading an url containing querystrings with jQuery's load method I first tried amp; but since that doesn't work, I'm now using . The problem is, now the page doesn't validate XHTML 1.0 transitional. Any suggestions?

[jQuery] Re: jQuery 1.2.2? btw...

2008-01-08 Thread [EMAIL PROTECTED]
LOL! jQuery 1.2.2 FTW!!! XD On Jan 8, 12:53 am, polyrhythmic [EMAIL PROTECTED] wrote: On Jan 7, 8:27 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm using the beta and it's much more performant than the 1.2.1 and I got no bugs so far... some intensive js scripts have decreased my

[jQuery] jquery ui tabs (tabs 3) in conjunction with the new coda slider (1.1.1) troubles.

2008-01-08 Thread [EMAIL PROTECTED]
Hi there, I am using the jquery ui tabs (tabs 3) in conjunction with the new coda slider (1.1.1), and for some reason the coda slider only works on the first tab. Here's the demo: http://www.cpmv2.com/test2/ If anyone has any suggestions I would really appreciate it.

[jQuery] $('element').fn(); not working after adding html to DOM... wonder if anybody can help :O

2008-01-08 Thread [EMAIL PROTECTED]
ok... I call an ajax function, get the data and translate it into html markup and then add it to the DOM, i.e. div id=myDiv/div if I call $('#myDiv').nameOfFunction(); it will just not recognize the added markup :| I don't know if anybody is capable of helping, but hopefully somebody can!

[jQuery] Re: Server side JQeury

2008-01-07 Thread [EMAIL PROTECTED]
On Jan 7, 3:46 am, howa [EMAIL PROTECTED] wrote: I have been following John's article:http://ejohn.org/blog/bringing-the-browser-to-the-server The script only support well formed XML, as defined in the function (env.js) window.__defineSetter__(location, function(url){                 var

[jQuery] jQuery UI resizable

2008-01-07 Thread [EMAIL PROTECTED]
Does anybody know some good tutorials apart from the wiki and examples? I can get the damn divs to resize! LOL! I think I'm going crazy :

[jQuery] jQuery 1.2.2? btw...

2008-01-07 Thread [EMAIL PROTECTED]
I'm using the beta and it's much more performant than the 1.2.1 and I got no bugs so far... some intensive js scripts have decreased my cpu load to even half in some cases, I wonder when it is going to be released I'm curious on what is going to come up other than performance tweaks :D wish

[jQuery] Re: Superfish Menus - Including Dynamic Navigation Arrows

2008-01-07 Thread [EMAIL PROTECTED]
Hi Robin, You can always control the Sub Level arrows by a new CSS class. You can get the extra class into your nav via jQuery without needing to edit Joels script, by just adding... $(document).ready(function(){ // normal Superfish Call $(ul.nav).superfish({ hoverClass: sfHover,

[jQuery] $('table tr').hover() not working in IE

2008-01-06 Thread [EMAIL PROTECTED]
This is my jQuery code: $('table tr').hover( function() {$(this).addClass('hover');}, function() {$(this).removeClass('hover'); }); This is my CSS:

[jQuery] Re: looking for plugin that presets values in text box

2008-01-06 Thread [EMAIL PROTECTED]
On Jan 5, 11:45 pm, Bhaarat Sharma [EMAIL PROTECTED] wrote: Hi, some time ago I saw a jquery plugin which would preset the value in a text box and when users' cursor came to that text box...the preset value would go away. it was sort of there to let the user know what format should

[jQuery] Re: looking for plugin that presets values in text box

2008-01-06 Thread [EMAIL PROTECTED]
On Jan 6, 11:00 am, Dave Methvin [EMAIL PROTECTED] wrote: $('form#myform [EMAIL PROTECTED]').val('please enter here').click(function() { if (this.value == 'please enter here') this.value = ''; }); The downside to changing the value attribute is that the please enter here text

[jQuery] Re: Drop Shadow Plugin

2008-01-05 Thread [EMAIL PROTECTED]
Magical script Larry! Can you explain a little how you turn an image into shadow? I expect it happens somewhere around shadows[0] jthis.close(), but can't understand how that makes things shadow- grayish. Sincerely, Paul On Jan 3, 10:54 pm, McLars [EMAIL PROTECTED] wrote: Hannes

[jQuery] Re: jQuery Tabs - Can I Do This?

2008-01-05 Thread [EMAIL PROTECTED]
Gday Matt, Not sure if there is a way to ignore the TABS functions, but what about just placing an onclick event. Either directly on the link, or bind it via jQuery onload. Just add a class as a hook, like... lia http=http://www.someothersite.com/; rel=http:// www.someothersite.com/

[jQuery] jQuery UI Tabs / Tabs 3 + Fading = can't CSS validate?

2008-01-03 Thread [EMAIL PROTECTED]
Hi, I just installed the jQuery UI Tabs / Tabs 3 and I am using the fading version. My CSS won't validate now. Any suggestions on fixing this? Thanks. -chris

[jQuery] Re: Just can't seem to figure way...

2008-01-03 Thread [EMAIL PROTECTED]
Can you tell me were that problem you saw ius and how to fix? Shane On Dec 26 2007, 10:24 am, 胡争辉 [EMAIL PROTECTED] wrote: Have you fixed your problem? 2007/12/22, [EMAIL PROTECTED] [EMAIL PROTECTED]: Can someone look at this code.. for some reason the top expanable menu runs

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread [EMAIL PROTECTED]
I'm assuming you're at least using firebug lite so that you can hit F12 and see your console.log messages.

[jQuery] Re: livequery runs only once...

2008-01-02 Thread [EMAIL PROTECTED]
UPDATE I had more than one element with same ID. This was creating the unexpected results. This was not a problem with jQuery, but with the webmaster (me!) thanks

[jQuery] Re: Help making my code more efficient...

2008-01-02 Thread [EMAIL PROTECTED]
Are your Question 1,2,3,4,5,6 textboxes, checkboxes or something like that? On Jan 2, 6:30 am, brianfidler [EMAIL PROTECTED] wrote: Can anybody offer some advice on how to make the following code more efficient? I'm reusing a lot of the same code and I know it can be streamlined quite a bit

[jQuery] openWYSIWYG and jQuery

2008-01-01 Thread [EMAIL PROTECTED]
Anyone familiar with openWYSIWYG (v1.0)? http://www.openwebware.com/ I cannot get it to work when I'm also using jQuery. Anyone figured it out? The forums at openWYSIWYG have the latest version (v1.4.7), but it doesn't work either. Jason

[jQuery] Re: openWYSIWYG and jQuery

2008-01-01 Thread [EMAIL PROTECTED]
I found a great alternative... tinymce... It also has many more features than openwysiwyg. has a free license too.

[jQuery] livequery runs only once...

2008-01-01 Thread [EMAIL PROTECTED]
This runs for the first input.Edit I click, but then never again: $(input.Edit).livequery('click',function(event){ $.get(index.php?fnc=ajax_get_newHTML, { id: $ (this).attr(id) }, function(newHTML){ $(body).append(newHTML); }); return false; }); Why doesn't it bind to

[jQuery] timing effects

2007-12-31 Thread [EMAIL PROTECTED]
How do I make the remove() occur only after the fadeOut() is finished? $(someDiv).fadeOut(2000).remove();

[jQuery] Re: timing effects

2007-12-31 Thread [EMAIL PROTECTED]
oh yes! the ol' callback function... thanks for answering! On Dec 31, 12:41 pm, Karl Swedberg [EMAIL PROTECTED] wrote: On Dec 31, 2007, at 3:07 PM, [EMAIL PROTECTED] wrote: How do I make the remove() occur only after the fadeOut() is finished? $(someDiv).fadeOut(2000).remove(); Hi

[jQuery] 1.2.2--strictly bug fixes and optimizations? Or have features been added?

2007-12-31 Thread [EMAIL PROTECTED]
Is 1.2.2 a cleaner 1.2.1? Or are there some new features as well? Is there a roadmap somewhere? What's next? 1.3 or 2.0?

[jQuery] Re: AJAX Request

2007-12-30 Thread [EMAIL PROTECTED]
Is there anyone who can help with this please? On Dec 29, 3:11 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi. I have just setup a basic site where you click the link and jQuery retrieves the link via ajax. Code as follows: script type=text/javascript function fetchURL(obj){     var

[jQuery] Regarding jQuery form plugin

2007-12-30 Thread [EMAIL PROTECTED]
Hi .. I built a multiple form uploader that uploads multiple files. I have it working exceptionally except that when i changed the url of the POST to or Action field to provide access to the cookies that come with the form post - it will no longer display the response. For example .. Posting

[jQuery] AJAX Request

2007-12-29 Thread [EMAIL PROTECTED]
Hi. I have just setup a basic site where you click the link and jQuery retrieves the link via ajax. Code as follows: script type=text/javascript function fetchURL(obj){ var page_address = obj.href; $.ajax{( url: page_address, type: GET, dataType: html,

[jQuery] Chaining Effects

2007-12-29 Thread [EMAIL PROTECTED]
Every time I try to do this, I am frustrated. It's the first thing I tried to chain in jQuery. I try it again from time to time, because I really want it to work. $(#messages).fadeIn(slow).html(pNew message.\/ p).fadeOut(slow); What I want is for the old message to fade out, then the new

[jQuery] fade out gallery onload

2007-12-28 Thread [EMAIL PROTECTED]
hi, i would like to achieve the following effect: when the page loads , 3 images loaded with an array fade out subsequently on top of the page then disapear, this is the only code i've come up with, any help is really apreciated. script $(document).ready(function(){ $(window).load(

[jQuery] cluetip issue

2007-12-27 Thread [EMAIL PROTECTED]
Hi , i am using teh following code $('.cfjq_cluetip').cluetip({ sticky:false, splitTitle: '|', showTitle: true }); to run the tip on different a tag using their own title attribute to display the tip so I have in my html: a class=cfjq_cluetip title=Test|This is a tip href=# Tooltip Test

[jQuery] Re: cluetip issue

2007-12-27 Thread [EMAIL PROTECTED]
Solved sorry was my stupid error Andrea On Dec 27, 12:30 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi , i am using teh following code $('.cfjq_cluetip').cluetip({ sticky:false, splitTitle: '|', showTitle: true }); to run the tip on different a tag using their own title

[jQuery] select function change - filter

2007-12-25 Thread [EMAIL PROTECTED]
Hi, I'm looking for some help building a filter function through select (combobox) something like this: $(select).change(function () { $(select option:selected).each(function () {... I have different divs each with a class like html, flash, print. I created a combobox to select one

[jQuery] Select elements in order

2007-12-24 Thread [EMAIL PROTECTED]
I want to select some items on my page in the order they appear, but it seems that jQuery selects them in the order that my selectors are written instead. So: $('h1,h2,h3') gets me all the h1s, then all the h2s, then all the h3s. Is there a way to get them in the order they appear in my

[jQuery] local ajax development?

2007-12-24 Thread [EMAIL PROTECTED]
I am trying to pull in some data, but I can't get it to work when I develop locally. I keep getting the following error:[Exception... 'Permission denied to call method XMLHttpRequest.open' when calling method: [nsIDOMEventListener::handleEvent] nsresult: 0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)

[jQuery] Re: (this).next problem

2007-12-24 Thread [EMAIL PROTECTED]
is a sibling of div.device_header; likewise, your ul is a sibling of your h2. Your a doesn't in fact have any siblings. Rebecca http://blog.rebeccamurphey.com On Dec 24, 1:56 pm, jody [EMAIL PROTECTED] wrote: hi all, I'm new to the list and new to jQuery, so I hope you can bear with me. I'm having

[jQuery] Re: Error in Ajax Queue plugin

2007-12-21 Thread [EMAIL PROTECTED]
My bad Jörn, was in the middle of a rushed build, will check it out... On Dec 6, 7:44 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] schrieb: Well I tried it, and it seems to work, however it triggers the 'error' handler too: If you'd be actually using the version I pointed

[jQuery] Re: JQZoom Updated

2007-12-20 Thread [EMAIL PROTECTED]
Do you like it? it's my plugin. Ing. Renzi Marco On 18 Dic, 06:31, Rey Bango [EMAIL PROTECTED] wrote: JQZoomhas been updated to v1.1 http://www.mind-projects.it/blog/?page_id=14 It acts as a magnifier for images. Rey

[jQuery] Can UI Sortable create additional levels?

2007-12-20 Thread [EMAIL PROTECTED]
UI Sortable seems a great tool but to be sure it suits my purpose I need to know if it implements the possibility to create further levels, ie if an item is dropped over another item, it would be nested in that one. The demos I've seen don't work that way but it would be a pity (and even a bit

[jQuery] Droppable Objects

2007-12-20 Thread [EMAIL PROTECTED]
Hi All I 2 droppable objects FormObject andRadioComposite object .There is another object RadioObject. What i am trying to do is drop RadioComposite into FormObject and then drop RadioObject into RadioComposite. As of now, i can only drop RadioComposite into FormObject. After which i am unable

[jQuery] Re: jquery forms with ajax responses

2007-12-20 Thread [EMAIL PROTECTED]
pedalpete, I am having this very same issue. Is there something specific you had to do to get jquery to work on returned forms? Thanks On Dec 18, 5:35 pm, pedalpete [EMAIL PROTECTED] wrote: Thanks for your help Hamish, I just got this working with the ajaxForm plugin.

[jQuery] Access Methods outside plugin

2007-12-18 Thread [EMAIL PROTECTED]
i use a jsGrid plugin, but i need access a the method(populate) populate outside the plugin. How its possible. I try: $.jQuery.fn.jsGrid.populate(); $.jQuery.fn.jsGrid.fn.populate(); $.jsGrid.populate(); etc and nothing working!! Please helpme

[jQuery] Re: tablesorter IE6 date sorting bug

2007-12-18 Thread [EMAIL PROTECTED]
Anyone? On Dec 12, 10:30 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all, I was going to post this in the jQuery plugins group, but I see traffic there is next to nil. I've been using jQuery and its associated plugins for about six months now. I lurk this group a lot and have

[jQuery] Re: Access Methods outside plugin

2007-12-18 Thread [EMAIL PROTECTED]
Please somebody help-me On 18 dez, 13:54, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: i use a jsGrid plugin, but i need access a the method(populate) populate outside the plugin. How its possible. I try: $.jQuery.fn.jsGrid.populate(); $.jQuery.fn.jsGrid.fn.populate

[jQuery] Access function outside plugin in jquery.

2007-12-18 Thread [EMAIL PROTECTED]
I need acceess function outside plugin in jquery. How to its possible? $.JQuery.fn.Plugin.function_plugin(); I need help

[jQuery] Re: ClockPick and IE7

2007-12-17 Thread [EMAIL PROTECTED]
tr td br /br /br /br /br /br /br /br /br /br / input id=test type=text / /td td/td /tr /table /form /body /html On Dec 16, 11:27 am, Josh Nathanson [EMAIL PROTECTED] wrote: Jimbo, do you have a link you can post? I don't have IE7 running so I can't test

[jQuery] Re: ClockPick and IE7

2007-12-17 Thread [EMAIL PROTECTED]
I am using jQuery 1.2.1. The problem has to do with position:absolute in the css file. I can change position to fixed or relative and I can see the time but it does not position correctly. On Dec 17, 10:20 am, Josh Nathanson [EMAIL PROTECTED] wrote: Jimbo - make sure you are using at least

[jQuery] Re: ClockPick and IE7

2007-12-17 Thread [EMAIL PROTECTED]
Josh, I added this link for you to see as well. http://www.realcoser.net/defaultold.html Thanks. On Dec 16, 11:27 am, Josh Nathanson [EMAIL PROTECTED] wrote: Jimbo, do you have a link you can post? I don't have IE7 running so I can't test it myself, but I can take a look at your code

[jQuery] Turn HTML tables into graphs using flot

2007-12-17 Thread [EMAIL PROTECTED]
I'd been playing with jQuery and building tables from JSON data, and then flot came along right at the same time I was working on a project that required graphing data that was already in tables. I wrote a plugin to help me out that I think other people might find useful:

[jQuery] Re: ClockPick and IE7

2007-12-17 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote: Jimbo - I checked out that link you sent. It looks like there are a few bad characters at the beginning of theclockpick.css file. Not sure how those snuck in there, but you can see them in Firebug, if you go to Net tab, then CSS, clickclockpick.css, then Response tab

[jQuery] Re: Nested Lists and Droppable : issues at over event

2007-12-15 Thread [EMAIL PROTECTED]
I'm very interested in this post. I go trough the same kind of issue a couple month ago and I never found the solution. Thanx ! On Dec 14, 1:48 pm, Karl Delandsheere [EMAIL PROTECTED] wrote: Hello everybody! I'm building an application quite similar to the Mac OSX Finder with a massive help

[jQuery] Re: Calling functions across multiple $(document).ready() blocks

2007-12-15 Thread [EMAIL PROTECTED]
).ready(function() { someFunction(); // a function that exists in another ready() block }); On Dec 14, 10:56 pm, js [EMAIL PROTECTED] wrote: Hi, I know it's possible to use multiple $(document).ready() blocks, but it seems as though you are unable to make function calls across the different

[jQuery] jQuery, Yahoo Weather and IE Problems

2007-12-14 Thread [EMAIL PROTECTED]
it with this: var isMSIE = /[EMAIL PROTECTED]@*/false; var weatherDataType=xml; if(isMSIE){weatherDataType=text;} $.ajax({ type: GET, url: weather.xml, dataType: weatherDataType

[jQuery] onload fadeout

2007-12-14 Thread [EMAIL PROTECTED]
hello i would like to know how it is possible to make an jpg image fade out as the web page loads ? thank you

[jQuery] Re: How to toggle display value?

2007-12-12 Thread [EMAIL PROTECTED]
I changed the block attribute value to table-row as per Karl's suggestion and everything works great. Thanks, - Dave On Dec 11, 9:42 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Actually, there are two .toggle() methods, just as there are two .load() methods. The .toggle() effect takes

[jQuery] pushStack documentation

2007-12-12 Thread [EMAIL PROTECTED]
A few of the recent posts have mentioned using jQuery.pushStack to turn an array into a jQuery object and allow the use of end(). Is there any official documentation for it? I can figure out how to use it from the source code, but to me if it's not documented then it's not supported and may

[jQuery] Re: How do I run a function on my selected items?

2007-12-11 Thread [EMAIL PROTECTED]
, aquaone [EMAIL PROTECTED] wrote: http://docs.jquery.com/Utilities/jQuery.each $(.myClassName).each(function(){alert($(this).attr('id'));}); I believe... aquaone [EMAIL PROTECTED] wrote: Here is my selection: $(.myClassName) Here is my function: function myFunction { alert( $ (this).attr('id

[jQuery] Re: So... Dating site using jQuery....

2007-12-11 Thread [EMAIL PROTECTED]
a lot :) On Dec 5, 6:02 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: You know, I have no idea how those features snuck by! Thanks a lot Andy for the heads-up and such. I'll see if I can get that going. For users it searches based on info in your account settings, I should definatley store

[jQuery] Re: jqModal and onHide callback

2007-12-11 Thread [EMAIL PROTECTED]
Do you mean the element that triggered it to appear or the element that triggered it to close the window ? On Dec 11, 1:36 am, mesh [EMAIL PROTECTED] wrote: Hi!br I have a need to do something everztime jqModal window is closed. Reading documentation revealed that I could use onHide callback

[jQuery] Re: Exception with tablesorter+pager when table is empty

2007-12-11 Thread [EMAIL PROTECTED]
I am pretty sure I solved this by just inserting a blank row into the table with display:none then trigger my updates on the table. It works in IE, FF and Safari. Just a suggestion. Hopefully it gets fixed in a later release :) On Dec 10, 11:37 pm, Francesco Vivoli [EMAIL PROTECTED] wrote: Hi

[jQuery] Re: printing ajax-retrieved content

2007-12-11 Thread [EMAIL PROTECTED]
I haven't done this but IE has onbeforeprint and onafterprint events, you could make the rest of the page hidden, print it then make them visible. Perhaps in other browsers you could launch a new window containing only that content and print it ? On Dec 12, 7:23 am, pixeline [EMAIL PROTECTED

[jQuery] Passing Values into internal variables

2007-12-10 Thread [EMAIL PROTECTED]
I'm using http://www.learningjquery.com/2007/10/a-plugin-development-pattern to develop my own plugin and I am stuck whilst trying to pass information into the generated 'object'. Something along the lines of setting the date on a calendar from outside... such as you can do with the UI

[jQuery] How do I run a function on my selected items?

2007-12-10 Thread [EMAIL PROTECTED]
Here is my selection: $(.myClassName) Here is my function: function myFunction { alert( $ (this).attr('id'); } So, foreach selected element in my selection I want to run myFunction on it. Does that make sense? Thanks!

[jQuery] Re: Dropdown box (select list) with images?

2007-12-10 Thread [EMAIL PROTECTED]
Peter, I just found this http://dev.jquery.com/~cbach/demos/selectbox/ On Dec 10, 1:43 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: Peter, There was one a while back, but I think it was only compatible with v1.1. I just check the old plugin list and could not find it. I will look in my

[jQuery] Rewrite

2007-12-09 Thread [EMAIL PROTECTED]
How to rewrite this into jquery code ? Just getting into that... so i need some example. Thanks. var upload_button = document.theForm.action_upload; var upload_url = test; var append_vars = ; for (var

[jQuery] Re: jQuery API Reference in CHM

2007-12-07 Thread [EMAIL PROTECTED]
Thank you, much useful. On Dec 7, 6:49 am, char101 [EMAIL PROTECTED] wrote: Hi, This is (yet another, if there is any) API reference of jQuery in CHM format http://charupload.wordpress.com/2007/12/07/jquery-documentation-chm/ The pages are taken directly fromhttp://docs.jquery.com

[jQuery] different in IE and Firefox

2007-12-07 Thread [EMAIL PROTECTED]
i have this code: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; html head script src=http://code.jquery.com/jquery-latest.js;/script script $(document).ready(function(){ $(button).click(function () { var

[jQuery] validation in IE6

2007-12-07 Thread [EMAIL PROTECTED]
I am using the validation and forms plgin together like that: script type=text/javascript $(document).ready(function() { var options = { target:'.cfjq_form_target1', beforeSubmit: function(){ $('.cfjq_form_target1').empty(); $('.loading1').show(); }, success: function()

[jQuery] Re: validation in IE6

2007-12-07 Thread [EMAIL PROTECTED]
( the object is now metadata and not meta ) as before all was fine. Andrea On Dec 7, 2:47 pm, Guy Fraser [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: I am trying with validator 1.2 and metadata and I get an issue in all the browsers : jQuery(element).metadata is not a function Any help

[jQuery] Re: validation in IE6

2007-12-07 Thread [EMAIL PROTECTED]
I am trying with validator 1.2 and metadata and I get an issue in all the browsers : jQuery(element).metadata is not a function Any help?? andrea On Dec 7, 12:52 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I am using the validation and forms plgin together like that: script type=text

[jQuery] Re: Error in Ajax Queue plugin

2007-12-06 Thread [EMAIL PROTECTED]
); } }); }); Odd On Dec 5, 7:52 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks - I'll give it a go... On Dec 5, 5:41 pm, J�rn Zaefferer [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] schrieb: Hi I'm trying to use the Ajax Queue plugin with the following code

[jQuery] FadeTo enchancement

2007-12-06 Thread [EMAIL PROTECTED]
Hi I've noticed that the fadeTo effect only seems to fade out to the value to pass in. Is there anyway of fading IN to a certain value? Cheers

[jQuery] Re: FadeTo enchancement

2007-12-06 Thread [EMAIL PROTECTED]
Thanks Mike :D On Dec 6, 1:28 pm, Mike Alsup [EMAIL PROTECTED] wrote: If the element's opacity currently exceeds the value you wish to fadeTo then you won't see any effect. But you can do something like this: I should rephrase that - you won't see an in effect with your fade (you'll

[jQuery] Re: [NEWS] Getting jQuery Adopted in Corporations

2007-12-06 Thread [EMAIL PROTECTED]
Thanks for the link Rey. This is a process I'm going through at the moment to encourage our studio to be looking forwards in using jQuery as the foundation of our future javascript enhanced builds. Although I keep coming up against the following: 1. Is jQuery going to be here for the long term?

[jQuery] pull in link url as well as image url from xml file when loading images dynamically

2007-12-06 Thread [EMAIL PROTECTED]
I'm able to use the dynamic loading method to create an xml file via php that gives me the list of image urls. However, i'd also like to pull in another node from the xml file 'pid' to help me construct the link that will be associated with each image. the xml i'm creating is below: ?xml

[jQuery] ajax post request in custom method?

2007-12-06 Thread [EMAIL PROTECTED]
Hi, I've made a custom method with addMethod to check a captcha. Basically, the captcha image is made in php and its value is sent to a session variable. So I make an AJAX post request to a php page which checks the input's value against that session variable. verify: function(value, element)

[jQuery] Re: jQuery taking a second or two to load?

2007-12-05 Thread [EMAIL PROTECTED]
You're a star - it's working great now, thanks. On Dec 4, 4:26 pm, Priest, James (NIH/NIEHS) [C] [EMAIL PROTECTED] wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] // regular toggle with speed of 'default' $('#toggle_atRisk').click

[jQuery] Error in Ajax Queue plugin

2007-12-05 Thread [EMAIL PROTECTED]
Hi I'm trying to use the Ajax Queue plugin with the following code: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml; head meta http-equiv=Content-Type content=text/html; charset=utf-8 /

[jQuery] Re: iFrames and jQuery

2007-12-05 Thread [EMAIL PROTECTED]
I've always just used DOM references to access iframes. I'm not aware of a way to do it in jquery. It always feels clunky to me. It would be nice to see a clean way built into jquery. On Dec 4, 8:40 pm, Ryura [EMAIL PROTECTED] wrote: I need to grab content from an iFrame, preferably using

[jQuery] Re: Error in Ajax Queue plugin

2007-12-05 Thread [EMAIL PROTECTED]
Thanks - I'll give it a go... On Dec 5, 5:41 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] schrieb: Hi I'm trying to use the Ajax Queue plugin with the following code: But everytime it runs I get an error saying 'jQuery.dequeue is not a function' and doesn't implement

[jQuery] So... Dating site using jQuery....

2007-12-05 Thread [EMAIL PROTECTED]
I posted a while back (a couple months or so ago) about the free dating site (LoveDango) I was working on. Well, looks like I have all the most basic features all ready to go. Basically, you can search, send/receive messages, send winks, edit your profile, upload/view photos+captions and a few

[jQuery] Customer Error Handler Not Working Correctly

2007-12-05 Thread [EMAIL PROTECTED]
HI I have the following code to try to custom handle any output errors: $(window).error(function(msg, url, line){ alert('Error: ' + msg + '\n' + 'File: ' + url + '\n' + 'Line: ' + line); }); However, any errors produced from vanilla javascript seem to produced lots of undefined

[jQuery] Re: new jARIA plugin

2007-12-05 Thread [EMAIL PROTECTED]
classes will also have to check for the axs class and make sure only classes before it are changed except when using the ARIA functions? On Dec 3, 5:24 am, Chris [EMAIL PROTECTED] wrote: code:http://www.outstandingelephant.com/jaria/jARIA.js docs:http://www.outstandingelephant.com/jaria

[jQuery] Re: So... Dating site using jQuery....

2007-12-05 Thread [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, December 05, 2007 8:05 AM To: jQuery (English) Subject: [jQuery] So... Dating site using jQuery I posted a while back (a couple months or so ago) about the free dating site (LoveDango) I was working on. Well, looks

[jQuery] Safari isn't executing embedded ajaxSuccess event on first load

2007-12-05 Thread [EMAIL PROTECTED]
I have a dynamic div I populate with data from an AJAX call. The data is just HTML and inside this is some script. Part of the script is an ajaxSuccess handler than is fired under FF and IE but in Safari it only fires after the 2nd or successive calls. It used jqModal and here is some code : The

[jQuery] The click event and Ajax (Problem)

2007-12-04 Thread [EMAIL PROTECTED]
Hi, I am sure this is a pretty basic question but I have the following problem. When I try to load content into a div container with AJAX, the content just loads for a split second and disappears or unloads itself again. It seems that the click event only works when the actual click is

[jQuery] Thickbox does not apply css in Safari 3

2007-12-04 Thread [EMAIL PROTECTED]
Hi, I have a html which has css elements like: style type=text/css label {margin-bottom:10px;} input {margin-bottom:10px;} /style when this page is popup up with thickbox, it works except the css does not apply to the related elements, if I display the page without thickbox,

[jQuery] jQuery taking a second or two to load?

2007-12-04 Thread [EMAIL PROTECTED]
Hi guys, Not sure if I'm just being fussy, but I'm running jQuery on an intranet site, and pages normally load almost instantly, even taking to account my own shoddy Javascript. Whilst using jQuery, it takes sometimes up to two seconds to load a page and I'm not sure why. Could it be because

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-12-04 Thread [EMAIL PROTECTED]
Hi, were you able to use jtageditor with latest jquery? thnaks. A.C. On Nov 14, 2:58 am, Guy Fraser [EMAIL PROTECTED] wrote: Karl Swedberg wrote: Not sure what Brian's plans are for implementing different types of tags, but if you need that functionality now, there is another excellent

[jQuery] Re: Firefox/Opera JS bug?

2007-12-03 Thread [EMAIL PROTECTED]
issues with the image.onload function, never had a chance to look into it though. Lee On Dec 1, 9:58 pm, Allan Mullan [EMAIL PROTECTED] wrote: Hey Lee, Thanks for that but I am already preloading the images in a div and am using the .onload method to do the mouseover effects... Also not sure if I

<    4   5   6   7   8   9   10   11   12   13   >