[jQuery] Re: cluetip ajax authentication

2009-04-20 Thread DotnetShadow
Hi there, I just tried your local code but I seem to be having problems with the beforeSend event var c = 1; $(.ic).cluetip( { ajaxSettings: { cache: true, type: POST, data: {username:'

[jQuery] Re: cluetip IE8 very slow adding to table rows

2009-04-20 Thread DotnetShadow
Hi there, I actually used your suggestion and things looked to be faster but now the problem is that the actual cluetip loads slowly and doesn't get cached. There is a delay of 1 - 2 seconds for it to load for some reason. Perhaps you can try testing it on IE8 you can download a virtual machine

[jQuery] Re: get Ajax answer to test it

2009-04-20 Thread gostbuster
Thank you very much On 16 avr, 20:17, James james.gp@gmail.com wrote: success: function(responseText){      if (responseText == '1')  // do something }, On Apr 16, 5:32 am, gostbuster jeremyescol...@gmail.com wrote: Hi everyone, I'm getting in trouble with ajax and jquery.

[jQuery] Re: hover and/or fadeTo breaking layout in IE 6 and 7

2009-04-20 Thread Jonathan
Figured this out - the problem wasn't jquery or hover and/or fadeTo, rather the infamous IE Guillotine Bug. More info and how to fix located here: http://www.positioniseverything.net/explorer/guillotine.html Cheers~ On Apr 20, 2:09 pm, Jonathan wyscr...@gmail.com wrote: Anyone come across

[jQuery] Re: How to run cf regex (or regular regex) on this code?

2009-04-20 Thread Rick Faircloth
Yes, it's certainly possible, and I'll probably code up that solution. However, the time difference may not even be noticeable because we're only talking about maybe 5 - 10 records max. Thanks for your help, Ricardo. Rick On Mon, Apr 20, 2009 at 12:31 AM, Ricardo ricardob...@gmail.com wrote:

[jQuery] explain the e in function

2009-04-20 Thread johannesf
Hi I cant find any generall documentation for the e in functions, for exampel: $().click( function(e) { }) Here I can get the position lite this e.pageY But what else can I get fron the e? Can someone please post a generall explanation on the e all the best // johannes -- View this

[jQuery] Re: explain the e in function

2009-04-20 Thread Mohd.Tareq
'e' is nothing but which holds the property of events like e.target.id which gives u target ide is object of event. On Mon, Apr 20, 2009 at 2:31 PM, johannesf johannes.foss...@gmail.comwrote: Hi I cant find any generall documentation for the e in functions, for exampel: $().click(

[jQuery] Does jQuery iCalendar plugin work with outlook?

2009-04-20 Thread tij_dev
Hello everybody ! Have you ever tried the jQuery iCalendar plugin (http://keith- wood.name/icalendar.html) ? it should be able to add an appointment to your outlook but I couldn't make it work. Even trying their proper example. If anybody has already tested it, I would be pleased to share his

[jQuery] Re: How to rewrite this in jQuery?

2009-04-20 Thread Matt Kruse
On Apr 19, 8:38 pm, Dave Methvin dave.meth...@gmail.com wrote: How about this? $(div[rel]).each(function(){    $(this).attr(id, $(this).attr(rel)); }); There is no need to create two jQuery objects then throw them away, or to use the clumsy attr() method. Just do:

[jQuery] Re: Best tooltip plug-in -- opinions?

2009-04-20 Thread MorningZ
Ridiculously good-looking What's good-looking to one may be hideous to another, so it's all going to depend on your tastes and CSS/Design skills to make what you feel is best for your application As for size, i have no idea where you are finding a 200k+ plugin to do something as simple as a

[jQuery] Re: explain the e in function

2009-04-20 Thread Karl Swedberg
The e is a reference to the event object, but you can name it whatever you want. I typically use event rather than e to avoid confusion: $().click( function(event) { }); You can see all available properties and methods of the event object here:

[jQuery] jcarousel lite beforestart improvement

2009-04-20 Thread Gergely Hodicska
Hi, It would be nice to add the following modification to the jcarousel lite plugin: o.beforeStart.call(this, vis()); - o.beforeStart.call(this, vis(), to); This way a handler able to update for example an info panel which is related to the next item. Best Regards, Felhő

[jQuery] Re: jQuery works fine locally but not so great online

2009-04-20 Thread salah
sorry for not inspecting all of your code : but using firebug I managed to fix this problem for you 1- go to your style.css. 2- finde style.css (line 9) .photo img { padding:16px 0 0 16px; position:relative; } and change it to : .photo img { padding:16px 0 0 16px; position:relative;

[jQuery] Noob Q's For SlideUp on a Hidden Footer?

2009-04-20 Thread jQnoob
I know, noobie here. I'm having trouble getting a slideUp effect to work correctly with a footer. I can easily get a slideDown from the top of the page to work, but when I try and reverse it the div that slides up covers the button. Basically I need to know how to bind/attach the activation

[jQuery] open modal from onClose of previous modal -- problems

2009-04-20 Thread Shade
I have a case where I wanted to open modal B from the onClose handler of modal A. This works fine, but then the close button of modal B fails to function properly. However, if in the onClose handler, i simply do a setTimeout(...,0) to delay the re-opening of the modal until immediately after the

[jQuery] .live() question

2009-04-20 Thread vakata
Hello, I have a question regarding live() and die() I attach an event like this: $(#demo1 li a).live(click,function() { ... anonymous function ... }); #(#demo2 li a).live(click,function() { ... same anonymous function ...}); The question is how to use die() on #demo1 properly? Calling:

[jQuery] jquery MVC

2009-04-20 Thread iapilgrim
Hi all, I'm using jquery MVC (http://jollytoad.googlepages.com/mvcusingjquery) When upgrading to jquery 1.3.2, I got this error [Exception... 'Syntax error, unrecognized expression: [...@ref]' when calling method: [nsIDOMEventListener::handleEvent] nsresult: 0x8057001e

[jQuery] jeditable and event bubbling

2009-04-20 Thread pinson.n...@gmail.com
I'm sure there's an easy solution to this, but I've spent most of the evening experimenting with it and an obvious means of preventing the default behavior escapes me. Here's the scenario: I have a span embedded in an anchor tag. The content in the span is editable via jeditable. Editing is

[jQuery] quick fix

2009-04-20 Thread salah
there could be a better solution but I made it using firebug for quick : go to style.css (line 9) edit this rule from : .photo img { padding:16px 0 0 16px; position:relative; } to this one .photo img { padding:16px 0 0 16px; position:relative; height:503px !important; width:754px !important;

[jQuery] Re: Getting started with jQuery

2009-04-20 Thread Donut
Here is another good place to start http://blog.themeforest.net/tutorials/jquery-for-absolute-beginners-video-series/ On Apr 19, 9:22 pm, yrstruly anthony.apol...@gmail.com wrote: Hello Can somebody maybe please give me a basic code to start testing jQuery, cause the beginners code on this

[jQuery] [autocomplete] Some Problems

2009-04-20 Thread HaiLin
I have some problems about jQuery autoComplete plugin. I use this one: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/. Here are problems: (1) select in IE6. It seems this can be fixed by using bgiframe plugin. Here is the author' optional: bgiframe plugin to fix select- problems

[jQuery] select change function

2009-04-20 Thread geh...@googlemail.com
hello everybody, i'm new in jquery (and javascript). ive try to write a little function to change the background-color for an element. it can change the text but not the background-color. any help? ---jQuery--- $(select).change(function() { var bar =

[jQuery] jquery truncate issue

2009-04-20 Thread Keet
I am having a small issue using truncate js, it all works fine when the full text is displayed, but when the text is truncated it seem that some html tag are been move out of place in the display. the error can be seen here http://clubheadbangbang.org/ the code: strongRest/strong are back,

[jQuery] Open a particular menu in accordion based on value passed to it

2009-04-20 Thread abhishekgal...@gmail.com
Hi All, I am using JQuery accordion to create a menu box , my problem is that say if I have 4 containers (Divs/menu ) and at runtime I want to open one of them depending upon the variable passed. I know using the option active:2 will open the 2nd container but can anyone please tell me what is

[jQuery] slider issues

2009-04-20 Thread silver...@gmail.com
Hello, I have a website that has codaslider but it doesn't work, can anyone please help me with figuring out why it doesn't work? Website: [url]http://www.naspos.com/zindex/index.html[/url]

[jQuery] Superfish Menu

2009-04-20 Thread Veenu
Hi there, Using the following tutorial, I have built a nice superfish navbar style menu http://users.tpg.com.au/j_birch/plugins/superfish/#sample4 However, I am stuck at few CSS customizations. 1. Currently the menu is in its fixed size (width). I want to spread it to 100%. I tried adding

[jQuery] Ajax timeout doesn't call error function?

2009-04-20 Thread PanMan
Hi! I'm trying to setup an ajax call which throws an error on timeout. function getXMLfeed(url, target) { $.ajax({ url: url, timeout: 1, error: function(d,msg) { alert(Could not load stuff); }, success: function(data){ var json =

[jQuery] Jquery MVC

2009-04-20 Thread iapilgrim
Hi I'm trying to use Jquery MVC ( http://jollytoad.googlepages.com/mvcusingjquery). I tried the hello example (http://jollytoad.googlepages.com/mvc- demo.html). it was ok. When I update jquery (in the demo) to jquery 1.3.2. I got this error [Exception... 'Syntax error, unrecognized expression:

[jQuery] Re: How to rewrite this in jQuery?

2009-04-20 Thread Enrico
Well, I think you don't have to turn your rel attributes into IDs. Once you can access the tabs (as Dave explained) and distinguish them, you're good to go. Best regards, Enrico

[jQuery] Re: jQuery introduction script (Alert Message is now showing!)

2009-04-20 Thread yrstruly
Hi,sorry but this code isnt doing what its suppose to. No Pop up message On Apr 3, 6:47 am, Mohd.Tareq tareq.m...@gmail.com wrote: On Fri, Apr 3, 2009 at 5:52 AM, yrstruly anthony.apol...@gmail.com wrote: Hallo Im new to jQuery. I have donwloaded the jquery-1.3.2min file and i have

[jQuery] web site configuration

2009-04-20 Thread rince78
Hi, at present I give a favour for one of my friends. Unfortunately I'm not really involved in programming web sites. I'm calling a lot of javascripts for a slideshow and some other stuff. for example: script type=text/javascript src=highslide-full.js/script script type=text/javascript

[jQuery] Re: Open a particular menu in accordion based on value passed to it

2009-04-20 Thread TenzoChris
I wrote a quick accordion pattern that uses the anchor attribute of a url to determine which panel should be expanded by default: http://skulljackpot.com/2009/03/30/quick-and-dirty-but-useful-jquery-accordion-pattern/ It'd let you write links like http://example.com/path/to/page#menu-2, and have

[jQuery] Re: jcarousel lite beforestart improvement

2009-04-20 Thread Gergely Hodicska
o.beforeStart.call(this, vis()); - o.beforeStart.call(this, vis(), to); I was too fast, this is not enough. Something like this needed: var nextItem = parseInt(to); var numberOfScrolledItems = itemLength-2; if (nextItem 1) { nextItem += numberOfScrolledItems; } else if (nextItem

[jQuery] Re: Jquery MVC

2009-04-20 Thread MorningZ
Why expression [...@ref] cannot been recognized in jquery 1.3.2? Because it was removed for 1.3.2 So either: 1) Go through and remove the @-s 2) Continue to use 1.2.6 On Apr 19, 10:43 pm, iapilgrim iapilg...@gmail.com wrote: Hi I'm trying to use Jquery MVC

[jQuery] SuperSelectors - a jQuery plugin that enables full CSS 2.1 selector support (even in IE6)

2009-04-20 Thread TenzoChris
Hey there- I recently finished up a plugin that I think has the potential to be really useful for folks. It uses jQuery's excellent selector support to work around some of the crummy CSS selector support in legacy browsers. If you've ever had to spend time adding 'class=radio' to all the radio

[jQuery] Re: Ajax timeout doesn't call error function?

2009-04-20 Thread Mauricio (Maujor) Samy Silva
Hi! I'm trying to setup an ajax call which throws an error on timeout. ... timeout: 1, error: function(d,msg) { alert(Could not load stuff); }, ... This works, but the error is never thrown. If I change the URL to something that's broken, I do get the error message, but on

[jQuery] Re: web site configuration

2009-04-20 Thread ryan.j
a href=# onclick=$('body').load('http:// www.google.co.uk')something like this?/a but don't do it inline, that would be rubbish! ;) On Apr 20, 12:51 pm, rince78 jacksc...@hotmail.com wrote: Hi, at present I give a favour for one of my friends. Unfortunately I'm not really involved in

[jQuery] Re: web site configuration

2009-04-20 Thread Shawn
If you do not know coding/javascript/DOM that well, I would suggest sticking with one page per change. But, if you want to dive in... Set up a div with an ID, and then use the load method to change it in JS when needed. i.e. (this has not been tested in any way) div id=myslides/div a

[jQuery] Re: Help- jquery Dynamic Image load - dbl click = loads twice

2009-04-20 Thread Tobias Gelston
Diogo - Thank you very much for the response. I am having a bit of trouble figuring out where to fit this additional code. I tried a few locations within my existing code and I am not having much luck. 'image.slide' What is that? I am not sure how that is used. Any additional help you or

[jQuery] Re: Ajax timeout doesn't call error function?

2009-04-20 Thread PanMan
On Apr 20, 3:03 pm, Mauricio \(Maujor\) Samy Silva css.mau...@gmail.com wrote: Hi! I'm trying to setup an ajax call which throws an error on timeout. ... timeout: 1, error: function(d,msg) {          alert(Could not load stuff);      }, ... This works, but the error is never

[jQuery] Re: Ajax timeout doesn't call error function?

2009-04-20 Thread Martijn Houtman
Hey PanMan, On Apr 20, 2009, at 12:28 PM, PanMan wrote: This works, but the error is never thrown. If I change the URL to something that's broken, I do get the error message, but on timeout it never happens. Am I doing anything wrong? Or is this a bug somewhere? No, this is not a bug. A

[jQuery] Re: clueTip access to xhr

2009-04-20 Thread zendog74
Thanks Karl. So, does the latest version of clueTip support all of the ajax options? I had to modify the plug-in previously to support sending some custom headers. Also, the xhr option looks like it may work for what I am trying to do, but I am not sure exactly how to use it. I don't really want

[jQuery] Re: Ajax timeout doesn't call error function?

2009-04-20 Thread Mauricio (Maujor) Samy Silva
A timeout is not considered an error. No. It's an error. Do the following: timeout: 1, error: function(d,msg) { if (msg==timeout) { alert(Ops! Could not load stuff - A timedout error occur); } else { alert(Could not load stuff - Another errorType occur); },

[jQuery] Re: 'Simulating' mouseenter/mouseleave/hover events using $.live

2009-04-20 Thread Walther
Thank you! I'll have a go when I get home later today and let you know how it works out. At the very least you've given me a very big starting block, and perhaps this will end up in the jQuery core! On Apr 18, 2:34 am, alexander farkas i...@corrupt-system.de wrote: You can try the following

[jQuery] Re: clueTip access to xhr

2009-04-20 Thread DotnetShadow
I am having the exact same problem even with the latest code and like yourself I have had to edit the plugin I've been having a similar discussion here: http://groups.google.com/group/jquery-en/browse_thread/thread/594721dc160949fa/5b91e7890e38ad72?lnk=gstq=dotnetshadow#5b91e7890e38ad72 Regards

[jQuery] Re: fadeOut Callback Trigger Count

2009-04-20 Thread blockedmind
Thanks very much. On Apr 20, 2:19 am, Karl Swedberg k...@englishrules.com wrote: You could do something like this: $(document).ready(function() {         $(#menu ul li a).click(function(e) {                 e.preventDefault();                 var $sibs = $(this).parent().siblings();      

[jQuery] Re: jQuery works fine locally but not so great online

2009-04-20 Thread alexandruv
Wow! I didn't think of such a simple solution. Yes, you were right, the width and height property of the img in CSS fixed it. Many thanks to all of you who took the time and answered! Alex salah-2 wrote: sorry for not inspecting all of your code : but using firebug I managed to fix this

[jQuery] Re: jquery not responding

2009-04-20 Thread brian
On Sun, Apr 19, 2009 at 11:10 PM, Donut erichschroe...@gmail.com wrote: I am trying to follow the tutorials on http://blog.themeforest.net/tutorials/jquery-for-absolute-beginners-video-series/ but for some reason cannot follow along with the very first tutorial. This is ridiculous. Is there

[jQuery] Re: [autocomplete] Some Problems

2009-04-20 Thread Tom Worster
On 4/19/09 10:17 PM, HaiLin myu...@gmail.com wrote: I have some problems about jQuery autoComplete plugin. I use this one: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/. Here are problems: (1) select in IE6. It seems this can be fixed by using bgiframe plugin. Here is the

[jQuery] Re: Questions about $.live, Live Query and performance

2009-04-20 Thread Geoffrey
Just bumping this from the weekend Again, Thanks On Apr 19, 9:16 am, Geoffrey geoffreykjqu...@gmail.com wrote: $.live and Live Query are both wonderful. I am hoping to put them to extensive use in my projects. I have a few questions about $.live and Live Query and their effect on

[jQuery] Re: Questions about $.live, Live Query and performance

2009-04-20 Thread Brandon Aaron
LiveQuery when used for events does not use event delegation. It binds the event directly to the matched elements. The reason the latest version of LiveQuery depends on 1.3.x is to take advantage of some internal changes to jQuery, not because it uses live. The live method in jQuery uses event

[jQuery] So .change() doesn't work immediately in IE and we have to use .click(). But what about tab+spacebar users?

2009-04-20 Thread kgosser
Been looking up why my .change() isn't working in IE6/7. Found some good links online to explain that the .change() doesn't work in IE until AFTER you click or tab away from the radio button or checkbox for those browsers. Then, it was recommended to use .click() instead. Ok, fair enough, but

[jQuery] Any benefit to using event.preventDefault() over return false to cancel out an href click?

2009-04-20 Thread kgosser
Just curious if there is a best practice when choosing between $(a).click(function(){ // stuff return false; }); and $(a).click(function(){ // stuff event.preventDefault(); }); to cancel out the href of an anchor when clicked. Thanks in advance for the help.

[jQuery] Re: Any benefit to using event.preventDefault() over return false to cancel out an href click?

2009-04-20 Thread John Resig
return false does e.preventDefault() and e.stopPropagation(). --John On Mon, Apr 20, 2009 at 3:20 PM, kgosser kgos...@gmail.com wrote: Just curious if there is a best practice when choosing between $(a).click(function(){   // stuff   return false; }); and $(a).click(function(){  

[jQuery] Re: AJAX xml problem

2009-04-20 Thread barton
Is this one just too difficult to answer? On Apr 17, 1:08 pm, barton bartonphill...@gmail.com wrote: I have a rss feed and want to navigate to media:thumbnails url=' etc. I can't figure out what to use for a selector as the media:thumbnails just doesn't work. I am doing a .find(). Any

[jQuery] Re: AJAX xml problem

2009-04-20 Thread Michael Lawson
try this $([nodeName=media:thumbnails]); cheers Michael Lawson Content Tools Developer, Global Solutions, ibm.com Phone: 1-828-355-5544 E-mail: mjlaw...@us.ibm.com 'Examine my teachings critically, as a gold assayer would test gold. If you find they make sense, conform to your experience,

[jQuery] Dropdown Menu

2009-04-20 Thread ຄຳ
hi all I'm looking for a dropdown menu. There is a menu with all the features I need at: http://p.sohei.org/stuff/jquery/menu/demo/demo.html But it looks like it's not compatible with newest JQuery version. What I need: o easy to use o keyboard support (cursor keys, esc) o simple demo o call

[jQuery] Re: on_mouse_over scrolling

2009-04-20 Thread Macsig
Hi, actually it doesn't work even if I go twice over the same button. Thanks for any help. I appreciate it On Apr 19, 3:37 pm, Macsig sigbac...@gmail.com wrote: Hi Victor, thanks for your reply. now it works but there is still an issue with the code: I can scroll down and up but after

[jQuery] Re: Best tooltip plug-in -- opinions?

2009-04-20 Thread René
On Apr 20, 5:58 am, MorningZ morni...@gmail.com wrote: Ridiculously good-looking What's good-looking to one may be hideous to another, so it's all going to depend on your tastes and CSS/Design skills to make what you feel is best for your application No, there are some libraries that

[jQuery] Re: Any benefit to using event.preventDefault() over return false to cancel out an href click?

2009-04-20 Thread kgosser
Thanks, John. So is it advisable to use one form or another? I've used return false throughout my app, and I'm trying to decide if it's a best practice to change it to preventDefault() if it's wiser to do so. On Apr 20, 2:26 pm, John Resig jere...@gmail.com wrote: return false does

[jQuery] Re: Best tooltip plug-in -- opinions?

2009-04-20 Thread Karl Swedberg
On Apr 20, 2009, at 3:53 PM, René wrote: On Apr 20, 5:58 am, MorningZ morni...@gmail.com wrote: Ridiculously good-looking What's good-looking to one may be hideous to another, so it's all going to depend on your tastes and CSS/Design skills to make what you feel is best for your application

[jQuery] Re: Best tooltip plug-in -- opinions?

2009-04-20 Thread Karl Swedberg
On Apr 20, 2009, at 3:53 PM, René wrote: As for size, i have no idea where you are finding a 200k+ plugin to do something as simple as a tooltip, but Jorn's tooltip is 10k plus a little bit of CSS (http://bassistance.de/jquery-plugins/jquery- plugin- tooltip/)

[jQuery] [Idea] Plugin to work with Nested Sets and AJAX

2009-04-20 Thread rigo
Hi Developers, I've got a idea for a new Plugin, but I'm not able to develop it by myself. 1. There is a Nested-Set-Table with some Items (id, left, right, name) (http://www.edutech.ch/contribution/nstrees/index.php or http://www.thundernail.de/projekt.php?url_nr=12submit=oneid=6 or

[jQuery] Re: Superfish IE 6 - no menu appears

2009-04-20 Thread gfranklin
I am having the same problem with superfish. My code is not supported in Internet Explorer 6. No sub-menus appear. I modified the css considerably to meet the requirements of the design. If you found something that fixed your problem in the CSS, please post your findings. Thanks! -GF On Apr 7,

[jQuery] Making a div a parent when clicked, and then making all others children?

2009-04-20 Thread MarGera332
Hey Everyone I wonder if someone can help. I have a sliding div that is used a few times on a page, which has the same mark up, but uses .class selectors. When i click on the a it makes the hidden part of the div slide down, but at the moment it makes all of them slide on the page, because it is

[jQuery] jquery-1.2.6.min.js and mootools.v1.1.js not compatable

2009-04-20 Thread amanj
Hi All, i have a problem with web page, i have 2 js files for tow topic jquery-1.2.6.min.js mootools.v1.1.js those file are not compatable togeher, please if have any thing or any problem could you advice me how can i use it? Thanks

[jQuery] load json

2009-04-20 Thread chakrounbaha
Hi everybody My json return these values [{libelle:France,countryId:1,code:FR}, {libelle:Tunisie,countryId:2,code:TN},..] I have to load them ,I used this script I've found it here (http:// groups.google.com/group/jquery-en/browse_thread/thread/ e337d34bddd1af86?pli=1) : script

[jQuery] Making inserted links active

2009-04-20 Thread Roddie
On a form, I have an Insert new field below here link. Clicking it inserts a new field, and also inserts another Insert new field below here link. This is so the user can keep adding fields anywhere within the form. However the newly inserted links don't work. I assume this is because they were

[jQuery] jQuery formatDate and javascript dateFormat

2009-04-20 Thread papichulo
Is there a specific reason why formatDate patterns does not use the java (or javascript) dateFormat standard? Gets quite messy when you have to translate all dates from standard format to jQuery standards... :S

[jQuery] Re: Superfish woes in IE

2009-04-20 Thread gfranklin
Laker, Thx for posting this information on the superfish menu problem in IE. I am having some issues in IE with my rendering of the menu system (see http://avalon.unisonagency.com/ if you're curious). Hopefully the a tag newline problem may help my situation. If you know of anything else I might

[jQuery] Re: jquery treeview menu problem

2009-04-20 Thread Titti
Hi Jay, here you can take a look about the problem (with firefox it's all ok, but with ie it doesn't works very well) http://www.mcworks.it/tests/ Thank you Paolo On 10 Apr, 21:01, jay jay.ab...@gmail.com wrote: Can you post an example? I'm not sure I understand your question. On Apr 10,

[jQuery] Re: jquery-1.2.6.min.js and mootools.v1.1.js not compatable

2009-04-20 Thread Josh Powell
http://docs.jquery.com/Core/jQuery.noConflict On Apr 20, 12:54 pm, amanj amanji...@gmail.com wrote: Hi All, i have a problem with web page, i have 2 js files for tow topic jquery-1.2.6.min.js mootools.v1.1.js those file are not compatable togeher, please if have any thing or any problem

[jQuery] Re: Any benefit to using event.preventDefault() over return false to cancel out an href click?

2009-04-20 Thread Josh Powell
It sounds like John is saying that e.preventDefault() will prevent the default event from occuring and e.stopPropogation() will prevent the event from bubbling up and return false will do both, so If you only want to stop the default but allow propogation or vice versa, then use the methods,

[jQuery] Re: Making inserted links active

2009-04-20 Thread mkmanning
Check out .live() in the docs http://docs.jquery.com/Events/live#typefn On Apr 20, 7:55 am, Roddie jqu...@myword.co.uk wrote: On a form, I have an Insert new field below here link. Clicking it inserts a new field, and also inserts another Insert new field below here link. This is so the user

[jQuery] Re: load json

2009-04-20 Thread mkmanning
For your JSON you'd need obj.libelle, obj.countryId, obj.code, etc. You also don't really need the if statement checking the length. On Apr 20, 6:34 am, chakrounb...@gmail.com wrote: Hi everybody My  json   return  these values [{libelle:France,countryId:1,code:FR},

[jQuery] jQuery and Flickr? Is there a best of breed plugin?

2009-04-20 Thread Andy Matthews
I'm looking for a simple plugin which would pull in a specified Flickr feed and display it using jQuery. Does something like this already exist? Google shows about 5 or 6 but none of them appear to work. andy matthews

[jQuery] Re: jquery-1.2.6.min.js and mootools.v1.1.js not compatable

2009-04-20 Thread Richard D. Worth
And for a little more detail: http://docs.jquery.com/Using_jQuery_with_Other_Libraries - Richard On Mon, Apr 20, 2009 at 4:24 PM, Josh Powell seas...@gmail.com wrote: http://docs.jquery.com/Core/jQuery.noConflict On Apr 20, 12:54 pm, amanj amanji...@gmail.com wrote: Hi All, i have a

[jQuery] Re: Best tooltip plug-in -- opinions?

2009-04-20 Thread Jack Killpatrick
worth a look: http://craigsworks.com/projects/qtip/docs/ http://cssglobe.com/post/4380/easy-tooltip--jquery-plugin http://www.lullabot.com/files/bt/bt-latest/DEMO/index.html - Jack René wrote: There are so many to choose from, I'd like to hear some opinions. 1. Relatively lean and fast.

[jQuery] Re: jQuery and Flickr? Is there a best of breed plugin?

2009-04-20 Thread Jack Killpatrick
http://www.projectatomic.com/2008/04/jquery-flickr/ - Jack Andy Matthews wrote: I'm looking for a simple plugin which would pull in a specified Flickr feed and display it using jQuery. Does something like this already exist? Google shows about 5 or 6 but none of them appear to work. andy

[jQuery] Modifying jQuery to decrease file size.

2009-04-20 Thread paulinstl
I'm currently using about one third of the jQuery library and I'm wondering if I can safely remove unused functions that are not being internally called nor called by my code in an effort to reduce filesize further. I realize that minified and gzipped its already small, but when there may be

[jQuery] Re: Error in IE8

2009-04-20 Thread Anand Kulkarni
Hi, The solution to the problem where the blockUI plugin doesn't working in IE8 is as follows: on line 151 simply change: var ie6 = $.browser.msie /MSIE 6.0/.test(navigator.userAgent); to var ie6 = $.browser.msie /MSIE 6.0/.test(navigator.userAgent) ! (/ MSIE

[jQuery] test - sorry, ignore -- why can't I see my posts....

2009-04-20 Thread kali
I can't see any posts I post to this group, why is this, WHY is it at all that you only read this forum if you're logged on to google?? most forums online you just need to register with the forum.. WHY bring google in either way, even after logging on to my google acct I can't see my posts

[jQuery] Re: passing elem id to a JS function...

2009-04-20 Thread kali
thank you very much!! (why can't I see my posts here? http://groups.google.com/group/jquery-en/topics?gvc=2 (I can only see my posts if I search for my uid (kali) ok, thank you very much.. sorry for two test-posts I have posted.. On Apr 15, 2:47 pm, mkmanning michaell...@gmail.com wrote:  

[jQuery] Re: test - sorry, ignore -- why can't I see my posts....

2009-04-20 Thread brian
On Mon, Apr 20, 2009 at 6:21 PM, kali maya778...@yahoo.com wrote: I can't see any posts I post to this group, why is this, WHY is it at all that you only read this forum if you're logged on to google?? most forums online you just need to register with the forum.. WHY bring google in um

[jQuery] Re: Best tooltip plug-in -- opinions?

2009-04-20 Thread Nikola
I really like the 'Simplest Tooltip ever' by Alen Grakalic at CSS Globe, it's a tiny script and it works well. Q-Tip is another nice one I've used in the past as well.. On Apr 20, 5:11 pm, Jack Killpatrick j...@ihwy.com wrote: worth a look: http://craigsworks.com/projects/qtip/docs/

[jQuery] Re: Cycle plugin Issue in Safari and Chrome browser

2009-04-20 Thread gcole_5
Having a similar issue with text content. Text does not wrap in Safari (using this as a quote scroller). All other browsers handle it fine. div id=rotate div class=sideQuotes span class=sideTitleDid You Know?/spanbr / pbABC.com/b is a great place to find...Pest Control, Pool Cleaning,

[jQuery] Re: on_mouse_over scrolling

2009-04-20 Thread Macsig
I'm trying to the hover working as a separate function (instead with the document.ready) so I came out with this code http://pastebin.com/me02845 and I call it through OnMouseOver=scrollbutton_down_hover() but nothing happens. Am I missing something? Thanks and have a nice day! On Apr

[jQuery] SlideFieldset Plugin for jQuery

2009-04-20 Thread Jeffrey
Hi, I wrote a simple jQuery plugin to make fieldset collapsible, take a look and give me some feedback if you like. Thanks. http://blog.darkthread.net/blogs/darkthreadtw/archive/2009/04/21/slidefieldset-plugin-for-jquery.aspx Jeffrey

[jQuery] Question about QUnit for testing ajax functionality

2009-04-20 Thread bobspryn
I am already familiar with the start() stop() abilities of qunit, so this isn't about that. My question I guess is more of process. If I develop an interactive feature that involves ajax submitting a form, and then updating the interface when the json comes back successful, how should I design

[jQuery] [treeview] help with persistant:location variable...

2009-04-20 Thread budduke
I looked through the board but can not find any info for what I am needing, for the persistant:location highlight, I need it to not look at the entire url string, just part of it. using php my links have http://www.myweb.com/good_link.php?location=herepage=5 the string should only be looking for

[jQuery] delaying an action

2009-04-20 Thread geocalleo
Hi all, I was wondering if there is a way in jQuery for me to disable a hover event for a few seconds and then execute it only if the mouse pointer is still hovering over the particular element I have set the hover event to. So the user would hover over a link and if after 2 seconds was still

[jQuery] Re: jquery-1.2.6.min.js and mootools.v1.1.js not compatable

2009-04-20 Thread Roger
On Apr 20, 3:54 pm, amanj amanji...@gmail.com wrote: Hi All, i have a problem with web page, i have 2 js files for tow topic jquery-1.2.6.min.js mootools.v1.1.js those file are not compatable togeher, please if have any thing or any problem could you advice me how can i use it? Those

[jQuery] Superfish In IE?

2009-04-20 Thread wiersbr
I am trying to use superfish in my Joomla site. Works well in everything except IE 6 or IE 7. Any idea what is wrong? http://www.therockfwc.org

[jQuery] Re: Form Plugin + FCKEditor + UI Dialog Button

2009-04-20 Thread lilo
I'm having the same issue. Anyone? On Mar 23, 9:29 pm, Joshua jos...@remote-app.com wrote: I downloaded thefckeditorjquery plugin because i was told it would resolve issues with submitting forms via Form Plugin ajaxSubmit. But everytime I do it, my form won't submit anymore... My dialog

[jQuery] synchronous ajax call being ran out of order in IE

2009-04-20 Thread Troop4Christ
I have an ajax call that I want to display an ajax loader image before it makes the call and then hide that image after it completes the call. The below code is working fine in FF. But when the code is run in IE, for some reason the ajax call is made first and then the image isn't displayed

[jQuery] javascript sending variables to the datepicker

2009-04-20 Thread calstatelanews.com
Purpose of the script- the script should count the rows of a table with id name. Then create a datepicker function with each unique id. In this example , Date0, Date1,Date2,Date3 script type=text/javascript function numrows() { var date=Date; var rowCount =

[jQuery] Re: SlideFieldset Plugin for jQuery

2009-04-20 Thread Rick Faircloth
Got a demo, Jeffrey? On Mon, Apr 20, 2009 at 8:20 PM, Jeffrey darkthr...@gmail.com wrote: Hi, I wrote a simple jQuery plugin to make fieldset collapsible, take a look and give me some feedback if you like. Thanks.

[jQuery] Re: Open a particular menu in accordion based on value passed to it

2009-04-20 Thread Charlie
you can pass the index for the accordion panel to the next page in a url after a hash or search symbol . On page with accordion extract the data from the url and use it to activate panel in accordion. here's a working example

[jQuery] Set event handler attributes does not work on IE7

2009-04-20 Thread Joshua Partogi
Dear all, I'm trying to set event handler attributes when the DOM is ready, but it doesn't work on IE7. The snippets are as such: script type=text/javascript var onInputChange = function (){ alert(Hey I'm changed); } $(function() {

[jQuery] Re: Set event handler attributes does not work on IE7

2009-04-20 Thread James
You should do: $(.input).change(onInputChange); or: $(.input).bind(change, onInputChange); On Apr 20, 3:49 pm, Joshua Partogi joshua.j...@gmail.com wrote: Dear all, I'm trying to set event handler attributes when the DOM is ready, but it doesn't work on IE7. The snippets are as such:

  1   2   >