[jQuery] jQuery (load) deletes my tags sIFR3

2009-06-20 Thread Majid_001
Hello, and thank you in advance for your help. I did not speak English, I'm french. I can not solve this problem. I'm trying to load a remote page using load function. It works, but it does not load tags using sIFR3. Tags are removed during the load Main html: http://www.delightfactory.eu/inde

[jQuery] Re: problems in IE (6, 7, and 8)

2009-06-20 Thread Paul Witschger
My apologies on the multiple threads. It just seemed that it got lost in the shuffle. OK, I fixed many of the errors from validator. Only one remains. Doing so seems to have fixed my IE issue (at least IE7). Here's the error that remains: [error] document type does not allow element "noscr

[jQuery] Re: jQuery UI dialog not behaving

2009-06-20 Thread Charlie
your dialog options need tuning $("#dialogue").dialog( { AutoOpen: false, /// should be autoOpen bgiframe: true, height: 400, width: 300, maxHeight: 10, /// 10?? maxWidth: 10, // 10? modal: true, resizable: true, buttons: { "Ok": function() { $(this).dialo

[jQuery] Re: Unresponsive Script

2009-06-20 Thread waseem sabjee
may be change this line jQuery(document).ready(function($) { to this $(function() { On Fri, Jun 19, 2009 at 11:22 PM, James wrote: > > Could this: delay(delayValue); > have anything to do with it? > > In your code, if you comment out all the calls to CreateOnClickEvent, > does it make the

[jQuery] Re: problems in IE (6, 7, and 8)

2009-06-20 Thread Ricardo
Hi Paul, Please avoid creating many threads on the same (or related) issues. This is the third on this subject that I can remember! For those who haven't seen it, last one is at http://groups.google.com/group/jquery-en/browse_thread/thread/30d3e93a0f339d7b?hl=en It looks like your pages are trig

[jQuery] Re: selector, second to last row of table

2009-06-20 Thread Paul Witschger
ok, go to http://www.hypertextwebdesign.com/admin, click the button that shows up (placeholder for login form) Click on Galleries on the menu on the left What shows next is the main galleries page. Here the client can sort the galleries how they want them to be sorted on their website, delete

[jQuery] Re: selector, second to last row of table

2009-06-20 Thread Ricardo
What exactly are you trying to achieve? It's hard to deduce anything from lots of .prev() and .next() calls without seeing the corresponding HTML mark-up. What inner DIV? What container? Moving a single row up should be as simple as $row.insertBefore ( $row.prev() ); http://snipt.org/kkpo On Jun

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-20 Thread Ricardo
Is it completely unfeasible to install Firefox 1.5 on those PCs (I wonder what hardware these are O.o)? It should work on Win95. Or event a linux distro if it's all browser+docs being done, might be cheaper than taking the time to redo it all without jQuery. Else, first thing to do is get a VM li

[jQuery] problems in IE (6, 7, and 8)

2009-06-20 Thread theprodigy
I have a bit of code that seems to work perfectly in FF and Safari, but causes some strange things to happen in IE. here is the code: [code] $('a.movedown').click(function(event) { var href = $(this).attr('href'); $.get(href); var $thisRow = $(this).parents('tr:first');

[jQuery] Re: how to call a JS function by pass into a JS

2009-06-20 Thread Matt Kruse
On Jun 20, 3:24 am, Davis wrote: > i want pass a JS function name into a function and call it. Why do you want to pass a name? Just pass the function reference instead. > babababa http://www.javascripttoolbox.com/bestpractices/#onclick You could do: bababa function ajax_loadpage(func) {

[jQuery] selectors in an external javascript file

2009-06-20 Thread Domenic M.
hey i have a quick question on selectors i have some nested divs and im trying to attach the click function to a link in one of the divs it works when i put the javascript directly after the links, but when i use the id of the div as a selector in an external javascript file it doesn't, any idea

[jQuery] Re: append and *slowly* show new content in DOM

2009-06-20 Thread MiD-AwE
My appologies for the silly reply. Instead try: (if it's ok to hide the container) $('#div_container').hide().append('hi there!').show('slow'); If you want to keep the container visible then try: $('#div_container').append('hi there!'); $('#div_container:last-child').show('slow'); On Jun 20,

[jQuery] Re: Problems on IE7

2009-06-20 Thread Charlie
i tried this in IE 7 and was able to get to search after closing modal without complete lock up page does however have a significant number of validation errors, multiple use of ID's,  broken tags, invalid xhtml tags ,style tags inside body all over the place etc and error console keeps throw

[jQuery] Re: append and *slowly* show new content in DOM

2009-06-20 Thread MiD-AwE
You could try $('#div_container').hide(this).append('hi there!').show('slow'); On Jun 20, 2:03 pm, Eric P wrote: > Hi, > > I'm guessing this is an easy question, but I can't figure it out. > > I want to add some new content to the DOM, so I have a line like this. > $('#div_container').append('hi

[jQuery] Re: how to call a JS function by pass into a JS

2009-06-20 Thread Ricardo
If the function is always global, you could use: function ajax_loadpage(x_func){ //... window[x_func](); }; ajax_loadpage('inittabFeeds'); Better than that would be passing the function object itself, if it's in scope: function ajax_loadpage(x_func){ //... x_func(); }; ajax_loadpage(ini

[jQuery] Re: Problems on IE7

2009-06-20 Thread xoail
Anybody? On Jun 19, 3:40 pm, xoail wrote: > Hi All, > > I've been literally pulling my hair out with this issue I have with > our corporate website. The problem is with jquery light box (jqmodal) > that freezes other controls after use  in IE7. There seem to be no > problem with IE6 or FF. > > I

[jQuery] append and *slowly* show new content in DOM

2009-06-20 Thread Eric P
Hi, I'm guessing this is an easy question, but I can't figure it out. I want to add some new content to the DOM, so I have a line like this. $('#div_container').append('hi there!'); However, I'd like it to slowly appear via show(). But adding show() doesn't work as I'd expect. The new conten

[jQuery] Re: cycle plugin image positioning issue

2009-06-20 Thread MiD-AwE
I recently ran into a similar situation where all slide shows other than the first was not displaying properly since they are written into the page after a mouse click on link like: $('#div').html($(href).html ()); So, since the first cycle slide show worked fine with css "width: 100%;height:aut

[jQuery] Re: Accessing the value

2009-06-20 Thread mkmanning
The default value is 'on'. You need to assign a value to each radio; also the selector you're using selects all of the radios without distinguishing between selected or not. Try this to experiment with: $(':radio.star').click(function(){ console.log($(this).val()); }); Your html should

[jQuery] Re: Accessing the value

2009-06-20 Thread W0utR
Thanks for the quick reply, i tried adding a value and it works thank you :) On 20 jun, 20:07, mkmanning wrote: > The default value is 'on'. You need to assign a value to each radio; > also the selector you're using selects all of the radios without > distinguishing between selected or not. > >

[jQuery] Re: li:nth-child(10) toggle

2009-06-20 Thread mkmanning
A minor refactor then: $('.main ul').each(function(){ var $this = $(this), lis = $this.find('li:gt(9)').hide(); if(lis.length>0){ $this.append($('').text('More').click(function(){ lis.toggle(); $(this).text($(this).text() === 'More' ? 'Less'

[jQuery] Re: li:nth-child(10) toggle

2009-06-20 Thread bombaru
You are a rock star! I can't thank you enough. On Jun 20, 1:55 pm, mkmanning wrote: > A minor refactor then: > > $('.main ul').each(function(){ > var $this = $(this), lis = $this.find('li:gt(9)').hide(); >         if(lis.length>0){ >         $this.append($('').text('More').click(function(){ >

[jQuery] Accessing the value

2009-06-20 Thread W0utR
Hi, i'm using php to create the stars for rating: echo ''; echo "Concept"; for($i = 1; $i < 6; $i ++) { ?> '; But how can i know what rating is selected? When i use: console.log($('input[name=concept]').val()); i just get: "on"

[jQuery] Re: Removing an emptied paragraph from the DOM

2009-06-20 Thread liam193
I think your issue is one equal sign instead of two equals signs. Basically, you are trying to set the length (which is read-only). That likely evaluates to false when it fails. Change your test to: parnt.length==0 On Jun 20, 7:20 am, Bruce MacKay wrote: > Hello folks, > > I have an applicatio

[jQuery] Select Menu help!!

2009-06-20 Thread TahoeKid
This works perfectly in Firefox and Safari but in both IE 6 and 7 I cannot get my includes to display... any suggestions? I have not found any better solutions to accomplish using a drop down menu to display an html message. var message = new Array(); message[1] = "