[jQuery] Re: Taconite,tables cellspacing and cellpadding in IE6

2007-09-09 Thread Mike Alsup
Stefano, I have this fixed but I'm having trouble with SVN right now so I can't check it in. But you can get the update (v2.1.7) here: http://www.malsup.com/jquery/taconite/jquery.taconite.js Cheers. Mike On 9/9/07, Stefano Griggio <[EMAIL PROTECTED]> wrote: > > Hi. > > In this taconite > >

[jQuery] Re: jQuery Detection Script

2007-09-09 Thread Rey Bango
My pleasure Paul. Its been an invaluable tool. Paul Bakaus wrote: I think it's time to redo this thing, maybe together with Sean. There is also a non-external version of mine (I don't know where it is now), so I'll see what I can do. Thanks for bringing it up again, Rey ;-) To answer the secon

[jQuery] Re: jQuery Detection Script

2007-09-09 Thread Paul Bakaus
I think it's time to redo this thing, maybe together with Sean. There is also a non-external version of mine (I don't know where it is now), so I'll see what I can do. Thanks for bringing it up again, Rey ;-) To answer the second question: No, it's currently not possible to exclude something. Sor

[jQuery] Re: $.getScript and variables

2007-09-09 Thread Equand
*global for $(document).ready(function() { SPACE }; ... On Sep 10, 4:33 am, Equand <[EMAIL PROTECTED]> wrote: > i forgot to mention... i tried to put it into a function and pass > global vars in it thru functions vars... and ofcourse they've lost > their globality... > > On Sep 10, 4:31 am, Equan

[jQuery] Re: $.getScript and variables

2007-09-09 Thread Equand
i forgot to mention... i tried to put it into a function and pass global vars in it thru functions vars... and ofcourse they've lost their globality... On Sep 10, 4:31 am, Equand <[EMAIL PROTECTED]> wrote: > Hi everybody... i have a question... > i want to virtualise my admin section... by gettin

[jQuery] $.getScript and variables

2007-09-09 Thread Equand
Hi everybody... i have a question... i want to virtualise my admin section... by getting the script from a php file on post. is this real? and i want it to use current documents vars... i just copied part of the script and tried to load it using getScript... but this part doesn't work, when I put

[jQuery] Re: Is it possible to do something like Firebug `inspect` function with JQuery?

2007-09-09 Thread howa
Yes, this is exactly what I want. This tool is really useful. Thanks. On 9月8日, 下午11時45分, Tzury <[EMAIL PROTECTED]> wrote: > > When mouse over an object, say a DIV for simplicity, I can use JQuery > > to get its absolute position in DOM tree, > > There is Modi (http://slayeroffice.com/tools/modi

[jQuery] Re: selected html include the selector tag?

2007-09-09 Thread Piotr Petrus
Eridius, use .outerHTML and its workaround for Gecko, from what you've written it's clear that you need this. ;) -- Piotr Petrus http://riddle.pl

[jQuery] Re: XML > HTML

2007-09-09 Thread Piotr Petrus
Set dataType to html in .ajax() call. If you really need to use .get(), use ajaxSetup(). This will make use of data.responseText instead of data.responseXML in jQuery internally. -- Piotr Petrus http://riddle.pl

[jQuery] Re: Expanding tree + styling

2007-09-09 Thread Piotr Petrus
1) cannot be a link. 2) Add class="parent" and insert dynamically small element with graphic (for example, plus) and attach event listener expanding list to that element. -- Piotr Petrus http://riddle.pl

[jQuery] Re: Newspapers Using jQuery

2007-09-09 Thread John Resig
That's great to hear! Thanks for letting us know :-) --John On 9/9/07, mawebgeek <[EMAIL PROTECTED]> wrote: > > I was reading the thread about justfutoncovers.com and the sub-thread > about getting a list of sites using jQuery, then I checked the listing > page and saw MiamiHerald.com, well, as

[jQuery] Re: jQuery script not working.

2007-09-09 Thread Karl Swedberg
Hi Shishir, If you're including the script in the of the page or from a separate file, you'll need to wrap the code in $(document).ready -- or one of the shorthands for it, like so: $(document).ready(function() { $("a").click(function(){ $(this).hide("slow"); return false;

[jQuery] Re: Scrolling Horizontal Marquee

2007-09-09 Thread Karl Swedberg
On Sep 8, 2007, at 2:39 PM, geetarista wrote: I tried to reply to this thread: http://groups.google.com/group/jquery-en/browse_thread/thread/ 3fcd31510dfe2bc7/ , but for some reason it said that I couldn't reply to that message. What I am looking for is an answer to the second part of the O

[jQuery] Re: selected html include the selector tag?

2007-09-09 Thread Eridius
Won't that just return the jQuery object which i can not output as html. Calvin Spealman wrote: > > > Um, just don't call .html()? > > On Sep 8, 3:21 pm, Eridius <[EMAIL PROTECTED]> wrote: >> lets say i have this code: >> >> >> test1 >> test2 >> test3 >> >> >> and t

[jQuery] XML > HTML

2007-09-09 Thread [EMAIL PROTECTED]
I've got some code like this. $.get('courseproviders.asp',function(data) { alert(data.text()) }) The ASP page returns XML. I guess that the callback is an xmlDocument. How can I convert that to HTML. ie. I'd like to return foo foo2 as a string.

[jQuery] Internet Explorer rounding numbers on data returned .getJSON request.

2007-09-09 Thread Joey T
Hello All, This is my first round with jQuery, which I think is absolutely fantastic, btw. At any rate, I have encountered a funky bug which seems to be IE / Internet Explorer specific. after completing a .getJSON request, whenever a numeric value is returned, IE is rounding the number, not ret

[jQuery] Traversing ul elements

2007-09-09 Thread [EMAIL PROTECTED]
I want to do a Ul traversal to the n-th level but I can't understand how the selectors work. What I am trying to do is taking some generated php data (that are unordered lists within unordered lists), and toggle every element from each second level of and so on. I am trying to make a peculiar si

[jQuery] Newspapers Using jQuery

2007-09-09 Thread mawebgeek
I was reading the thread about justfutoncovers.com and the sub-thread about getting a list of sites using jQuery, then I checked the listing page and saw MiamiHerald.com, well, as a developer for McClatchy Interactive (the owner of the Miami Herald as well as bunch of other papers), I am proud to

[jQuery] Refresh/Redraw on IE7

2007-09-09 Thread [EMAIL PROTECTED]
I am new to jquery, and I am trying to load HTML and CSS from a database and have them applied dynamically to the document. The CSS is returned as a string and I am using the cssEngine plugin to change the CSS: $.cssEngine.createStyle(myCSS,'page_theme'); Everything is working fine, the CSS

[jQuery] Refresh/Redraw on IE7

2007-09-09 Thread [EMAIL PROTECTED]
I am new to jquery, and I am trying to load HTML and CSS from a database and have them applied dynamically to the document. The CSS is returned as a string and I am using the cssEngine plugin to change the CSS: $.cssEngine.createStyle(myCSS,'page_theme'); Everything is working fine, the CSS

[jQuery] Interface and Treeview plugins conflicting

2007-09-09 Thread Jqlover
Hello , I am not able use interface library's tooltip with treeview menus plugin. both are conflicting with each other. Menus are jerking while expanding when i remove the interface library then the menus are working fine now. pls suggest. Thanks

[jQuery] Re: New Plugin: ZoomBox

2007-09-09 Thread Jqlover
Gr8 work weep, it is working great in FIREFOX. I am not able to see the same effects in IE6.0 . it is giving an error while loading. On Sep 9, 11:30 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > Great start! > It would be cool to add in the keyboard mappings to go to the next image. > Or escap

[jQuery] Show Hide across divs with tabs and menus

2007-09-09 Thread dogslife
This is probably very simple (, but not to me, I'm still learning so take it easy on me). When a user clicks a menu item while on Tab 2, I want the default area to hide, and then the relevant area to show. Here is the file so far with notes on what should happen on clicked events: ...

[jQuery] Redraw after changing CSS / Screen artifacts?

2007-09-09 Thread Brook Davies
I am new to jquery, and I am trying to load HTML and CSS from a database and have them applied dynamically to the document. The CSS is returned as a string and I am using the cssEngine plugin to change the CSS: $.cssEngine.createStyle(myCSS,'page_theme'); Everything is working fine, the

[jQuery] Plugin does not work in IE7 and IE6

2007-09-09 Thread Thasmo
This script does not work for IE7 and IE6, it gives an error on line 12, sign 3 and 5: (function($) { alert('1'); var settings = { effect: { duration: 100, }, }; $.fn.menu = function() { aler

[jQuery] jQuery script not working.

2007-09-09 Thread Shishir Srivastava
Hi All, Just started working on jQuery. Here's my simple piece of code borrowed from the tutorials section of jQuery page. http://jquery.com/src/ jquery.js"> $("a").click(function(){ $(this).hide("slow"); return false; }); http://jquery.com/";>jQuery Now wh

[jQuery] Re: jQueryCamp '07 (Boston)

2007-09-09 Thread G[N]Urpreet Singh
Why dont u invite YUI theatre to cover the conference and post the videos. One of your talks is already up there... On 9/8/07, John Resig <[EMAIL PROTECTED]> wrote: > > > Hard to say - unless we get some video equipment, it's rather unclear. > > --John > > On 9/7/07, YoctoGram <[EMAIL PROTECTED]>

[jQuery] jQuery Edit In Place Help

2007-09-09 Thread Chris
Hello All, I am working to get this plugin http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/ working. I can successfully edit in place text, but I would like to take a php variable from my editing page and pass it to my updating the database page. Unfortunatel

[jQuery] jQuery example: help in review

2007-09-09 Thread [EMAIL PROTECTED]
Hello, I've created a small game with jQuery: Fifteen puzzle. http://www.alexatnet.com/node/68 The jQuery part is very simple but I'm interested in ideas on how to make it smaller. Probably this can be a good demonstration of jQuery power, but it now contains 40 lines of jQuery code, when I pref

[jQuery] Re: Memory leak in 1.1.4?

2007-09-09 Thread bweaverusenet
Any official confirmation of the leak, or comments from the dev team? Thanks! -bill On Aug 28, 2:36 pm, CM-Z <[EMAIL PROTECTED]> wrote: > In IE7 as well as in IE6 there is an memory leak.

[jQuery] Re: jQuery Autocomplete Plugin Efficiency in AutoSuggest Brand Spanking New

2007-09-09 Thread Alexsandro_xpt
No body? On 7 set, 15:08, Alexsandro_xpt <[EMAIL PROTECTED]> wrote: > Hello everybody, > > I need/would like get (jQuery > Autocomplete)http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ > efficiency and make a new AutoSuggest(http://www.brandspankingnew.net/ > archive/2006/08/ajax

[jQuery] Re: Jquery Quick Reference / Cheat Sheet

2007-09-09 Thread adrien
Hi! I have made a complete cheat sheet for Jquery, In my opinion, this version is more attractive and complete that all I've found on the net, so I post it here, enjoy. PNG http://www.box.net/shared/suz017p7p3 (1024x768px, 364.4 KB) PDF http://www.box.net/shared/riknf0ul02 (A4, 155.3 KB) PSD http

[jQuery] Fifteen puzzle in jQuery

2007-09-09 Thread howardk
Here's a very nice implementation of the "Fifteen" puzzle (http:// en.wikipedia.org/wiki/Fifteen_puzzle) in jQuery: http://www.alexatnet.com/node/68 Howard

[jQuery] Expanding tree + styling

2007-09-09 Thread [EMAIL PROTECTED]
Hello, I have created a ul tree with a php script, and I am trying to make it a vertical expandable using jquery. Since every li could also be a link (reference to another php file), clicking on that link is not going to make the list expandable, therefore the jquery treeview is not working for m

[jQuery] Taconite,tables cellspacing and cellpadding in IE6

2007-09-09 Thread Stefano Griggio
Hi. In this taconite ... the attributes cellspacing and cellpadding are not working with IE6. With Firefox they work correctly. Thanks, Stefano.

[jQuery] Re: Live Query doesnt find it, standard selection doesnt find it... whats wrong?

2007-09-09 Thread ethanpil
Turns out the code was fine. But, I was using JQuery.ready instead of $(document).ready for my main code. This resulted in the code setting the default visibility values every time the DOM was changed, insted of only the fist time. Simple and stupid mistakes always take the longest to debug. Ch

[jQuery] Plugin doesn't seem to work in IE6 and IE7

2007-09-09 Thread Thasmo
This gives me an error in IE6 and IE7 on line 12 on position 3 and 5: alert('javascript running...'); (function($) { alert('1'); var settings = { effect: { duration: 100, }, }; $.fn.menu = function() {

[jQuery] jQuery script not working.

2007-09-09 Thread Shishir Srivastava
Hi All, Just started working on jQuery. Here's my simple piece of code borrowed from the tutorials section of jQuery page. http://jquery.com/src/ jquery.js"> $("a").click(function(){ $(this).hide("slow"); return false; }); http://jquery.com/";>jQuery

[jQuery] jQuery Edit In Place Help

2007-09-09 Thread Chris
Hello All, I am working to get this plugin http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/ working. I can successfully edit in place text, but I would like to take a php variable from my editing page and pass it to my updating the database page. Unfortunatel

[jQuery] Jquery Cheat Sheet

2007-09-09 Thread adrien
Hi! I have made a complete cheat sheet for Jquery, In my opinion, this version is more attractive and complete that all I've found on the net, so I post it here, enjoy. PNG http://www.box.net/shared/suz017p7p3 (1024x768px, 364.4 KB) PDF http://www.box.net/shared/riknf0ul02 (A4, 155.3 KB) PSD http

[jQuery] filter(fn)

2007-09-09 Thread Pluthos
Hi everyone, I am new to this group. I have been trying to get filter(function) to work for a few days without success. My goal was to remove DOM elements that did not belong to a pre-arranged array. Out of desperation I tried the example given in the on line documentation at http://docs.jquery.c

[jQuery] Scrolling Horizontal Marquee

2007-09-09 Thread geetarista
I tried to reply to this thread: http://groups.google.com/group/jquery-en/browse_thread/thread/3fcd31510dfe2bc7/ , but for some reason it said that I couldn't reply to that message. What I am looking for is an answer to the second part of the OP's request: a horizontal scrolling marquee. I have

[jQuery] Adapting fValidate to work with jQuery

2007-09-09 Thread Craig Allen
Just in case others are looking for help making jQuery work properly if you are also using the fValidate library... The problems mostly afflict IE6, but show up in various places - things just don't work. I'm not sure this cure all problems, but it made a huge difference in what I was trying to d

[jQuery] Re: Unavoidable Duplicate DOM IDs?

2007-09-09 Thread Theodore Ni
If you must use IDs, then you can always create an object to keep track of all the ID names. Just maintain a counter variable that can be appended to your ID. On 9/7/07, Su <[EMAIL PROTECTED]> wrote: > > On 9/7/07, Collin Allen <[EMAIL PROTECTED]> wrote: > > > > working on this project with some P

[jQuery] problem with selectors and ajax content

2007-09-09 Thread JuergenRiemer
Hi, I have an HTML document, that I write into a div element. this works fine, yet when I try to access the the inserted elements via jQuery selectors I cant. here the main html document, the div where I input the html document via jquery respectively empty here the html (database.html) documen

[jQuery] Show Hide across divs with tabs and menus

2007-09-09 Thread dogslife
This is probably very simple (I'm still learning so take it easy on me). When a user clicks a menu item while on Tab 2, I want the default area to hide, and then the relevant area to show. Here is the file so far with notes on what should happen on clicked events: ... //--

[jQuery] Jquery Cheat Sheet

2007-09-09 Thread adrien
Hi! I have made a complete cheat sheet for Jquery, In my opinion, this version is more attractive and complete that all I've found on the net, so I post it here, enjoy. PNG http://www.box.net/shared/suz017p7p3 (1024x768px, 364.4 KB) PDF http://www.box.net/shared/riknf0ul02 (A4, 155.3 KB) PSD http

[jQuery] Re: selected html include the selector tag?

2007-09-09 Thread ironfroggy
Um, just don't call .html()? On Sep 8, 3:21 pm, Eridius <[EMAIL PROTECTED]> wrote: > lets say i have this code: > > > test1 > test2 > test3 > > > and then i do $('#text div.inner_text:eq(' + index + ')').html() but that > will only select the text(ie test1, test2, test3)

[jQuery] Re: Code work under FF but not under IE6

2007-09-09 Thread Dragondz
Thanks for response upgradding to 1.1.4 soved the problem, I have now a CSS problem! (overflow: hidden for the div is not workink on IE6!!). Thanks On Sep 6, 5:15 pm, Wizzud <[EMAIL PROTECTED]> wrote: > You can try ... > 1. changing $('p.sc1').css('top','60px'); to $('p.sc1').css({top:60}); an

[jQuery] prob with

2007-09-09 Thread JuergenRiemer
Hi, I have a problem with jquery recognizing elements of html that was inserted via ajax. here is the main html file where I input the ajax result xxx this is the html file that I include: HEAT ccc an this is my js file test = { load : function(){

[jQuery] Is it possible implement mutiple drag use jquery and interface?

2007-09-09 Thread huangliang2211
like there is a all item list and every item with a checkbox, when i check some items and drag a checked item, all checked item will begin move. is that possible?

[jQuery] Interface's tooltip conflictng with Treeview menus.

2007-09-09 Thread Vivek
Hello Friends, I am using jquery's interface plugin's Tooltip it was working fine. Then i have included the treeview menu's plugin. But it was working fine when in an HTML file that i downloaded form the treeview's homepage. then i added that to my project then it starts flickering instead of giv

[jQuery] Re: jQuery Autocomplete Plugin Efficiency in AutoSuggest Brand Spanking New

2007-09-09 Thread Alexsandro_xpt
Hellow???

[jQuery] Re: Is it possible to do something like Firebug `inspect` function with JQuery?

2007-09-09 Thread Tzury
> When mouse over an object, say a DIV for simplicity, I can use JQuery > to get its absolute position in DOM tree, There is Modi (http://slayeroffice.com/tools/modi/v2.0/modi_help.html) not jQuery but still JavaScript

[jQuery] Re: jquery autocomplete plugin with php

2007-09-09 Thread Saidur
Thanks for the help. On Sep 8, 12:33 am, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Giovanni Battista Lenoci schrieb: > > > Saidur ha scritto: > >> Hello , > > >> I am a new bie in jquey. I need tutorial to work on jquery auto > >> complete plugin with php . > >> I need code. That i will test

[jQuery] Re: Is it possible to do something like Firebug `inspect` function with JQuery?

2007-09-09 Thread Joan Piedra
Do you mean its top, left, right and bottom values? $('div').mouseover(function(){ var $this = $(this); var top = $this.css('top'); var bottom = $this.css('bottom'); var left = $this.css('left'); var right = $this.css('right'); console.log($this, top, bottom, left, right);

[jQuery] Re: jQueryCamp '07 (Boston)

2007-09-09 Thread Joan Piedra
What about recording them with a webcam and then upload them to youtube? :) On 9/7/07, Rey Bango <[EMAIL PROTECTED]> wrote: > > > Can we get a webcam so folks can log in and see/hear? > > John Resig wrote: > > Hard to say - unless we get some video equipment, it's rather unclear. > > > > --John >

[jQuery] Interface

2007-09-09 Thread Vivek
Hello Friends, I am using jquery's interface plugin's Tooltip it was working fine. Then i have included the treeview menu's plugin. But it was working fine when in an HTML file that i downloaded form the treeview's homepage. then i added that to my project then it starts flickering instead of giv

[jQuery] Adsense Absolute Information :AAi Groups

2007-09-09 Thread Suntwu Suntzu
Adsense Absolute Information :AAi Groups http://groups.google.com/group/aaigroup For your vision in google adsense. How to make money with adsense. How to create web to create page impression. How to earning money easy. For article, technique, thinking in adsense, seo, free downlaod, free stuff.

[jQuery] confusing children() behavior

2007-09-09 Thread ScottBruin
I have a subpar understanding of Javascript and JQuery, but something I came across the other day seems counterintuitive to me and I can't find an answer. I've been working on an autocomplete search with drop down--most of it is based on Chapter 8 of Learning JQuery. In this search, pressing ente

[jQuery] Adsense Absolute Information :AAi Groups

2007-09-09 Thread Suntwu Suntzu
Adsense Absolute Information :AAi Groups http://groups.google.com/group/aaigroup For your vision in google adsense. How to make money with adsense. How to create web to create page impression. How to earning money easy. For article, technique, thinking in adsense, seo, free downlaod, free stuff.

[jQuery] Re: PopupWindow Plug-in Not working on AJAX output

2007-09-09 Thread [EMAIL PROTECTED]
Good News, I was able to solve the problem using another plug-in -- Live Query (http://brandonaaron.net/docs/livequery/#getting-started). Here is my modified pop-up window code: var profiles = { windowCenter:{ height:550, width:750, toolbar:1, scrollbars:1,

[jQuery] Another site using jQuery...

2007-09-09 Thread Rick Faircloth
Here's another one for ya. www.PerformanceBike.com Check out this page and click on the photo of the helmet and you'll see thickbox in action. The tabs display on the same page might be the tabs plug-in, also. http://www.performancebike.com/shop/profile.cfm?SKU=23101 Rick

[jQuery] Re: $.css() values from jQuery created objects return undefined in Opera

2007-09-09 Thread Equand
http://www.jppromo.ru On Sep 10, 1:01 am, "Piotr Petrus" <[EMAIL PROTECTED]> wrote: > Address of website please? ;) > -- > Piotr Petrushttp://riddle.pl

[jQuery] Re: $.css() values from jQuery created objects return undefined in Opera

2007-09-09 Thread Piotr Petrus
Address of website please? ;) -- Piotr Petrus http://riddle.pl

[jQuery] $.css() values from jQuery created objects return undefined in Opera

2007-09-09 Thread Equand
i've ran into the problem while finishing testing my website... it returns undefined values... can anybody help with this?

[jQuery] Re: New Plugin: ZoomBox

2007-09-09 Thread Mark
That's looking very funny! good job so far.

[jQuery] Re: Gallery Site: JustFutonCovers.com

2007-09-09 Thread Rey Bango
Hey Ty, You can change the icon by simply downloading the actual script file from here: http://dev.jquery.com/~paul/jquerydetector.js changing the reference to the current image from this: http://jquery.com/images/favicon.png to something that you like better. Then upload the updated scrip

[jQuery] Re: [NEWS] Lazy Load Plugin on Ajaxian

2007-09-09 Thread Mika Tuupola
On Sep 7, 2007, at 4:49 PM, Rey Bango wrote: Mika Tuupola's awesome lazy load plugin got a nice write up over on Ajaxian.com. http://ajaxian.com/archives/lazy-load-plugin-for-jquery Great work Mika!! Thanks. Lot seem to have happened during two days I was away from internet :) -- Mika

[jQuery] Re: New Plugin: ZoomBox

2007-09-09 Thread Glen Lipka
Great start! It would be cool to add in the keyboard mappings to go to the next image. Or escape to send it back down. Awesome work! Glen On 9/9/07, weepy <[EMAIL PROTECTED]> wrote: > > > Inspired by EaseBox and Highslide, I made this plugin > > http://parkerfox.parkerfox.railsplayground.net/la

[jQuery] Re: Is it possible to do something like Firebug `inspect` function with JQuery?

2007-09-09 Thread Rafael Santos
I've done a function like this: myId = function(me){ return me.id ? '#' + me.id : '' } myTag = function(me){ return me.tagName ? me.tagName.toLowerCase() : '' } myClass = function(me){ return me.className ? '.' + me.className.split(' ').join('.') : '' } breadcrumbs = function(me){ var path = [m

[jQuery] New Plugin: ZoomBox

2007-09-09 Thread weepy
Inspired by EaseBox and Highslide, I made this plugin http://parkerfox.parkerfox.railsplayground.net/labs/zoombox/ It's still very much in alpha and tested only in Firefox * loads large image upon click * can provide own loading HTML as an option * loads the images offscreen to determine their

[jQuery] Re: Gallery Site: JustFutonCovers.com

2007-09-09 Thread Ty
Thanks "sweet baby" Rey, that's one [EMAIL PROTECTED]@$$ barb-B-que recipe. Add GreaseMonkey, a dash of Baukaus GreaseMonkey seasoning... And just watch as the jQuery goodness bubbles to the top!! It would be cool to be able to change the image for sites using jquery to something a little more bol

[jQuery] Re: [REMINDER] jQuery Detection Script

2007-09-09 Thread Sean Catchpole
I will take this opportunity to remind everyone that there is also a firefox plugin. http://www.sunsean.com/jquerydetect/ ~Sean

[jQuery] Re: Is it possible to do something like Firebug `inspect` function with JQuery?

2007-09-09 Thread Richard D. Worth
Something like this? $('#myDiv').click(function() { var path = [this.tagName + '#' + this.id]; $(this).parents().each(function() { path[path.length] = this.tagName; }); alert(path.join(' < ')); }); - Richard On 9/8/07, howa <[EMAIL PROTECTED]> wrote: > > > When mouse over an object,

[jQuery] Re: [REMINDER] jQuery Detection Script

2007-09-09 Thread Piotr Petrus
Is it possible to exclude pages where window.parent is defined? Take a look how script behaves on GMail, I think it's too bloated way to do checks. -- Piotr Petrus http://riddle.pl

[jQuery] Re: Find textNodes and wrapping it with a tag

2007-09-09 Thread Pops
Yes thank you. Incidently, I just found a .wrapText() method in the jQuery MoreSelectors plugin that does the same thing! // Plugin to wrap html around non-empty text node(s) within an element: // (ignores text in child elements) // Eg: $("LI").wrapText("") // B