[jQuery] Problems with arrays got from php

2010-01-04 Thread ChrisMc
Hello, I have a form with multi select field like so: SELECT NAME=cats id=cats class=cats OPTION value=11/OPTION OPTION value=22/OPTION ... /SELECT If I'm passing one value script works, but if I have multiple options, it only gets me last in array. jquery script working this out like:

Re: [jQuery] problems with event triggering in IE6, presumably 5.5 as well.

2009-12-23 Thread Jeff @ FreeThought
Adam-241 wrote: I'm working on getting what should be a simple rollover effect done in jquery, and it works like a charm in firefox and safari, but IE is not having any of it. ... the problem seems to be that the layered divs I'm using to capture the user's mouseover event are empty, and

[jQuery] jquery problems - please help - not a CODER - just an USER

2009-11-30 Thread Escu
i got an wordpress theme (paid one) and it uses jquery. I got a plugin (WP Ajax Edit Comments 3.1) that uses jquery too. The problem is that both jquerys doesn't work together. When i disable one, the other one is working. Any ideeas?

[jQuery] Re: jquery problems - please help - not a CODER - just an USER

2009-11-30 Thread Scott Sauyet
On Nov 30, 6:48 am, Escu dl.e...@gmail.com wrote: i got an wordpress theme (paid one) and it uses jquery. I got a plugin (WP Ajax Edit Comments 3.1) that uses jquery too. The problem is that both jquerys doesn't work together. When i disable one, the other one is working. Any ideeas? Although

[jQuery] Problems injecting text into div classes

2009-11-25 Thread shaf
Hi Guys I have several div classes and I am trying to insert some html into one of them but firebug keeps telling me its not a function. Code below: div class=direction/div div class=direction/div div class=direction/div div class=direction/div $(.direction)[1].html(div class=\direction_err\The

[jQuery] Problems - editing the Superfish Menue

2009-11-24 Thread Der_Beni
Hi, im using the superfish-mod for joomla and everthing is working fine, but i can't figure out how to edit different hover styles for first- level and second level menue-items. They look always the same.i just want to have different states for first level/first level hover and second

[jQuery] Problems with quotes

2009-11-19 Thread heohni
Hi, I have databse entries like: CUBE Streamer #039;sloping#039; ULTEGRA 3 x 10 (99euro;/Woche) I use this text with jquery and I am writing this text into a div. When reloading my page, because of a form validation, the text gets automatically like this: CUBE Streamer \'sloping\' ULTEGRA 3 x

[jQuery] Problems with writing into input fields

2009-11-18 Thread heohni
Hi, I have a small script which should write me into input hidden fields some values: $('input[name=category_id]').val(c_chosen_id); $('input[name=category_name]').val(cat_name); My problem now is, that it seams, the value get's written, because I can alert it, bit it's not getting written into

Re: [jQuery] Problems with writing into input fields

2009-11-18 Thread Dhruva Sagar
Hi, There could be a lot of reasons behind the inconsistent behaviour. 1.) Are these inputs being added to the DOM dynamically, i.e. at runtime ? If so have you ensured that your updating the values at the right times ? 2.) Are the fields part of the form that you submit ? At all times ? 3.) Are

Re: [jQuery] Problems with writing into input fields

2009-11-18 Thread Wil Everts
Without seeing more code it's hard to know where you're falling down... Here are a couple stabs for you: 1. Add a console.log('id: ' + c_chosen_id); and console.log('cat: ' + cat_name); into the mix and see if that's working, maybe the variables aren't always set properly... (Remember to remove

[jQuery] Problems using jQuery in mixed css enviroment using media=screen and media=print

2009-11-16 Thread mfhp
Hi, This is the situation: I have a webpage that uses 2 different css definitions. One definition is for viewing the page in the browser and one is used when printing the page. The page is using a plugin (jScrollPane) to hide the normal scrollbar and display a dhtml-scrollbar. - Both css are

[jQuery] Problems with Jquery 1.3 and Google web optimizer?

2009-11-08 Thread the_woodsman
Hi, When migrating to JQ 1.3.2, we seem to have found an issue with our Google Web Optimizer (GWO) experiments. there seems to be a race hazard of some kind before GWO redirects to an alternate page version. The error is along the lines of document.body does not exist... when we roll back to JQ

[jQuery] Problems with Ajax and caching

2009-10-23 Thread Magnus O.
Hi! I'm creating a ajax call like this: jQuery.ajax({ url: http://urltopage/?callback=callbackhandler;, dataType: json, type: GET, cache: true, callback: null, data: null }); I then have a callbackhandler function like this: function callbackhandler(data){ do something here } The response

[jQuery] Problems in a jquery drop down menu

2009-10-12 Thread Borgir
Hi there! In this site: http://work.r-m.me/termogreen/v2/ If you hover over a couple of times the Produtos's submenus (second level menus): - Energias renováveis - Água quente sanitária - Climatização - Tubagens e acessórios The sub sub menus won't appear (third level menus)... Anyone knows why?

[jQuery] Problems with load() in IIS?

2009-10-12 Thread Scogle
I'm working on a project that uses the load() function to grab data from external files, but I keep getting a 405 Method Not Allowed error and the data won't load. I'm wondering if this is a problem with the server or if it's a sloppy mistake on my part. Any help would be greatly appreciated.

[jQuery] Problems with elements shifting when scripts are activated in IE8 (jscrollpane script)

2009-10-07 Thread Shawn - Eclectic Whimsy
Hi there, I'm fumbling through here so I apologize in advance for being such a newby to javascripts and jquery. I spent the entire day yesterday getting jscrollpane to work on a site I've been working on and was SO excited to see that it was working beautifully in firefox this morning after some

[jQuery] Problems with variables

2009-09-11 Thread Netto
I`ve the follow code: $(function() { $(#datepicker).datepicker({minDate: '1/1/2009', maxDate: '10/10/2010'}); }); In this ame page, I`ve this field: input type=hidden value=02/02/2009 name=date1 id=date1 / I would get the date of field with name: date integrate with jquery like this: -

[jQuery] Problems with styles in jQuery UI

2009-09-10 Thread Reynier Pérez Mira
Hi every: I'm developing a web application in wich I use the latest release of jQuery and jQuery UI. I have created my own theme using the tool provide but jQuery UI Site. I have a problem with Accordion component. The first h3 element of the accordion is align to right and the rest is OK

[jQuery] Problems with blur/focus when validating a field

2009-09-09 Thread jhm
I'm having trouble setting the input focus when validating fields in a form. I have a very simple case below, that validates a field for white space. If it has white space, it triggers an alert and I'd like the focus to stay in that field. However, when tabbing, it moves to the next field

[jQuery] Problems with ajax and encoding

2009-09-05 Thread xaviergxf
Hi, I´m using ajax(xml) to load one piece of php code, a template code stored on the database(Latin1). I´m having problems with accentuation when this piece of php code has accentuation. I´ve tryed almost everything, but i had no sucess at all. My code its like that: js: $.ajax({ url:

[jQuery] Problems with minDate on datepicker not allowing before 1999.

2009-09-02 Thread hoe``
If I do something like, minDate: new Date(1930, 1-1, 14) or, minDate: '-70Y' The oldest date available will be 1999, and no matter what I've tried I've never been able to get beyond this barrier. Is this a limitation of datepicker? Thank you, ~Joe

[jQuery] Problems with form validation

2009-08-22 Thread thegeekster2010
Please forgive my ignorance on the matter. I've only recently switched from pHp and older JS conventions am not quite used to the varying syntax. Here goes: I am building out new forms for my company and am using jQuery for the form validatin. The form has sets of hidden questions that will

[jQuery] Problems with blockUI and the form plugin

2009-08-20 Thread coptang
And I'm using taconite too so possibly one for Mike ;-D To summarise: I'm calling blockUI and then running ajaxForm on my whole page form. BlockUI is firing an overlay (with form field content) but only after the form has been ajaxed. Because of this my fields aren't seen as in the form and so

[jQuery] problems with async ajax call in ie

2009-08-04 Thread csetzkorn
Dear all, Because IE behaves differently to FF I have to implement a ‘mother function’ that only returns a value after an ajax call finished. Basically this works fine in FF: HTML: p id=error_message_step1 style=color:red;/p Script: $(document).ajaxStart(function() { $.blockUI({ message:

[jQuery] Problems with two Superfish menus

2009-07-17 Thread Germanico Brismal
Hi guys, I had a problem when I tried to use two Superfish menus. This problems just occur when I use Internet Explorer 6. Please, visit this URL to see the screenshot that explain everything. My HTML doesn't have any special structure to cause this problem. Can someone give me some idea about

[jQuery] Problems with selectors and this keyword

2009-06-29 Thread Coxy
$('.mainTable tbody tr').bind(mouseover, function(){ // alert('hi'); //$(this + ' td').css('background', '#ff'); // Didn't work $(this + ' td').css('background', '#ff'); // Doesn't either }); I want to highlight td's in a row when I mouse over the TR's. I set

[jQuery] Problems with $.getScript (IE)

2009-06-28 Thread ZLOAder
Hi.I want to get real-time statistics about users connected to server. Server response contains JS-code - var online_users = 1234; I wrote simple test page: ... meta http-equiv=refresh content=3;url=index.html ... script type=text/javascript src=js/jQuery/ jquery-1.2.6.js

[jQuery] Problems with jquery.form and multi-file-upload plugins

2009-06-27 Thread goldy
i'm trying to submit the files to a target file that will work with them i have tried the iframe=true parameter but without success please help, what i'm missing //start scrpt var counter = 0; function prepareForm(formname) { var options = { //target:

[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] Problems on IE7

2009-06-19 Thread xoail
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. If you go to p$j$m.com (remove $ signs), click Glossary

[jQuery] Problems with animate()

2009-05-27 Thread Filipe
Hello mates! I'm having a few problems using the animate() functions. The following piece of code works perfectly fine: $(document).ready(function(){ $('#aba').animate({width: '300px'}, 2000); $('#content').animate({width: '454px'}, 2000); $('#aba').animate({width: '30px'}, 2000);

[jQuery] problems with ajaxSubmit and files when file(s) not selected

2009-05-19 Thread csetzkorn
Hi, I am kind of successfully uploading files using ajaxForm/ajaxSubmit and POST. My form has a file input (I am actually using jquery.MultiFile.js) and some text inputs e.g. input type=file maxlength=1 class=multi id=image name=image accept=gif|jpg|jpeg/ label for=fax class=labelFax:/label

[jQuery] problems with each() and JSON

2009-05-15 Thread martin horton
Hi Folks, i have a big roblem with a little getJSON request. At first..this is my code: === HTML === buttondicken ajax-request ausführen!/button ul id=myList /ul /body === JavaScript == $(function(){ $(button).click(function(){ $.getJSON(myJson.js, myCallback);

[jQuery] Problems with rounded corners plugin

2009-05-13 Thread RCT_Nitro
Attached is my page code, I'm trying to make the corners rounded on the div div#LoginArea - but try as I may I'm not able to work out why this won't work - would be grateful for thought on what I've done wrong... %@ Page Language=VB AutoEventWireup=false CodeFile=DEV_Login.aspx.vb Inherits=Login

[jQuery] Problems with JQuery Cycle Plugin and IE6

2009-05-08 Thread Chris
Hi, I am having a problem with IE6 and the cycle plugin. In IE6 it shows a black background over my div background image (I set via css a background image to a master div). cleartype set to false, cleartypeNoBg to true. I am cycling transparent png images. In IE7+ and Firefox everything is ok.

[jQuery] Problems with special chars in jQuery Form plugin

2009-05-07 Thread Remko
Hi, I use the Form Plugin to store some user info in my database. When inserting the data i have some troubles with special chars. Words like Rëmkó will be converted to Rëmkó. I submit the data to a file like this $DB-query(INSERT INTO exp_members (screen_name) VALUES ('.$_POST ['name'].'));

[jQuery] Problems when use Jquery and my js code together

2009-04-30 Thread Tanco
when i am using my js: // JavaScript Document var ddajaxtabssettings={} ddajaxtabssettings.bustcachevar=1 //bust potential caching of external pages after initial request? (1=yes, 0=no) ddajaxtabssettings.loadstatustext=img src='images/loading.gif' / Requesting content... NO NEED TO EDIT

[jQuery] problems with filter() a variable ajax response

2009-04-04 Thread Mathew
I ma having trouble with this for a few hours and thought id post to see if i can get help. I am trying to use ajax to load an element from another page. i can see the response and the id element i am looking for inside but i can get nothing but a null value trying to extract the html() im using

[jQuery] Problems with radio buttons

2009-04-02 Thread echomrg
Hi all, i'm having a problem reading checked values from radio button: i have two sets of radio buttons and i need to read the value linked to each selected/checked button. Googling for answers i found this snippet: $(inp...@name='NAME']:checked).val() but it only works if there's just one set

[jQuery] Problems using JRC corner or curvycorner

2009-03-26 Thread banacan
I'm creating a page with many divs that I would like to have rounded corners, and several problems keep coming up. When using JRC for rounding, not all elements will round even though they have the correct class. Reloading the page will, after several attempts, create the rounded corners,

[jQuery] problems with dynamic click event... how do I get the index in there ?

2009-03-20 Thread hybris77
hi folks, if anyone could direct me in the right direction here I'd be very happy what's wrong here : $( calculationsArray ).each(function(){ var index = $( calculationsArray ).index(this); $( .calculations_list ).append( li class='calculations_menu_list'+ (index+1)+/li)

[jQuery] Problems whith the variables for a click function

2009-03-18 Thread Patrik
Hi! I try to make a script to change the prize between with tax and without but I cant get it to work whats wrong? var sant = 'no'; var pris = $('#productPrices').html(); $('#tax a').click(function(){ if(sant == 'no'){ var pris2 = pris.replace(/[^0-9.,]+/g, '').replace(/[,]+/g,

[jQuery] Problems with fadeTo and jQuery UI Slider

2009-03-17 Thread altrugon
Hi there, I'm working on a header that display a slideshow and at the same time use the fadeTo() effect; the behavior of this header is as follow: 1) Once the page is load display slideshow 50% transparency and hide navigation 2) When user hover header fade slideshow and navigation to 100% 3)

[jQuery] problems with jquerytableresizer

2009-03-10 Thread miro
http://code.google.com/p/jquerytableresizer/ I am trying to use the jquerytableresizer but having some problems. First of all the first column turns different attached is the image http://www.nabble.com/file/p22426241/jquery-resizer.gif and second inside the jquery tabs its behaving

[jQuery] Problems with input type='file' /

2009-03-06 Thread Renato Bezerra
Hi, I'm having problems with componente input type=file. I'm using the jQuery for cleaning his field, for example: HTML: input type=file id=fileName / jQuery Script: $('#button').click(funtion(){ $('#fileName').val(''); }); In the Firefox it works, but in the IE7 don't works.

[jQuery] Problems with dependent selects and accents

2009-03-04 Thread Dark
Hello! I have some problems with my jquery! When I select one option with accent in my combo, the ajax don't work!. The page is: http://www.ibcperu.org/sicnabd/index2.php Please, could you help me?? Thks!

[jQuery] problems extracting links and redirecting to function

2009-02-28 Thread hybris77
can anyone please see waht's wrong with this I want to get all a tags in the div #wiki_content and get the text from it and send into a function called searchDelay... im not getting as far as jumping into the $.each loop so not sure waht's wrong var links = $( #wiki_content a );

[jQuery] problems validating xhtml when using jquery append

2009-02-27 Thread clivey_g
hiya, i discovered that my lovely xhtml page stopped being xhtml valid when i used the jquery append function. it gives the error: document type does not allow element link here the solution is to wrap the javascript in a cdata tag like this: script type=text/javascript

[jQuery] Problems getting validate plugin to work with select box

2009-02-26 Thread paulswansea
I'm trying to get the validate plugin to work with a select box, but for some reason, it wont validate if i select a country, what am i doing wrong? form id=testform method=post select name=country id=country option value=Select a country/option option

[jQuery] Problems with alphanumeric plugin

2009-02-24 Thread Chizo
Hi! i need some help with alphanumeric plugin. I have a couple of inputs that i want to only permit numbers to be write there, so i´m using this plugin, but the problem is that i can only prevent user from enetering characters non numeric in the first input, but nothing happens with the others...

[jQuery] problems getting HREF attribute in click event

2009-02-22 Thread hybris77
can anyone help me to get the href attribute to send off with the function in this code please $(Item, xmlData).each(function(){ var title = $(this).find( Text ).text(); var url = $(this).find( Url ).text();

[jQuery] Problems...

2009-02-10 Thread Po01
Hi, i have a function like this: function test(s, t, c) { var Ss = # + s; var S = # + s + cod; if(t == 1) { $(S).empty().html(a href='#' onClick='test(+s+, 0, +c+)'-/ a +s); $(Ss).show(); } else { $(S).empty().html(a href='#' onClick='test(+s+, 1, +c+)'+/ a +s);

[jQuery] Problems with the simple jquery suckerFish menu?

2009-02-09 Thread 123gotoandplay
Hi there, I am having problems with the suckerFish menu if i copy the code and let the font-size be 22px all is good: bldd.nl/jsproblems/menuTest2.html please rollover item3 but when i use a smaller font bldd.nl/jsproblems/menuTest2.html and you roll a couple of times over item3, i can't

[jQuery] Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Raymond Camden
Ok, I'm probably missing the obvious here, but I'm having a very difficult time understanding how to use a jQuery UI dialog with a simple theme. First off, I began with the following code: html head script src=js/jquery.js/script script src=js/ui/ui.core.js/script script

[jQuery] Problems using one button to slideUp multiple instances at once using variables

2009-01-28 Thread ryjohnson
I have a menu that when you click on a button it slides down a set of options pertaining to that click, and when you click on another one the one open slides out and the new one slides in. I can get this to work but there are about 15 menus, so writing the code 15 times for 15 buttons begins to

[jQuery] Problems with creating a pager effect with a kwicks nav

2009-01-25 Thread zeckdude
Hello all, I created a Kwicks style nav and I am trying to make each of the buttons fade in a certain area of content. Each of the buttons fades in their areas correctly, but after I hit one button, it won't do anything when I hit another button after that. I'm pretty sure it has something to

[jQuery] Problems with finding parental a-tag

2009-01-19 Thread Christoph Neymeyr
Hi, I have a situation where I have an image with a specific class. I need to find the a-tags surrounding this items class, but could not make is, as I have different situations that are totally dynamic - unfortunately. a href=...divdivdivpimg class=thisClass/p/div/ div/div/a and a

[jQuery] Problems with the New API Browser

2009-01-14 Thread James Van Dyke
Does anyone else find the new API browser to be a bit cumbersome? My gripes: 1) No back link at top of vertical navigation list. You must click the category to cancel your choice and essentially go back. However, this isn't very intuitive and there aren't any affordances to this behavior

[jQuery] Problems with show() and submit button

2008-12-28 Thread Stephen
I've been stumped on this one long enough that it's time for someone to show me the obvious. I have a form where each element is a table row. Interspersed between the rows with actual elements are rows with help information for the element above them. When the focus is on an element, I want to

[jQuery] Problems with show() and submit button

2008-12-28 Thread Stephen
I've been stumped on this one long enough that it's time for someone to show me the obvious. I have a form where each element is a table row. Interspersed between the rows with actual elements are rows with help information for the element above them. When the focus is on an element, I want to

[jQuery] Problems with more than one AJAX request at a time

2008-12-12 Thread hotdog...@gmail.com
Hello there! I'm sending an AJAX request using jQuery that could take a minute to complete. However, I also want to send other smaller ajax requests to the same host at the same time just after the first one starts. The problem is, the smaller requests block until the first one finishes. Is

[jQuery] Problems selecting elements...

2008-12-12 Thread SLR
I've been beating my head over this code for quite some time. I was hoping somewhere here can send me on the right direction... Here is my jQuery Code: $(document).ready(function() { // Dynamically Configures the active link based on ID attribute in body tag var pageIndex =

[jQuery] Problems with Validate's errorPlacement

2008-12-11 Thread knal
Hi there, I'm using Validate on my website, but i'm having difficulties with the errorPlacement. In simple a part of my form looks like this: label for=emailE-mail/labeldiv class=warn*/div input type=text name=email id=email / Validation works fine, but i can't get the message

[jQuery] Problems with Validate's errorPlacement

2008-12-11 Thread knal
Hi there, I'm using Validate on my website, but i'm having difficulties with the errorPlacement. In simple a part of my form looks like this: label for=emailE-mail/labeldiv class=warn*/div input type=text name=email id=email / Validation works fine, but i can't get the message

[jQuery] Problems with sortable()

2008-11-26 Thread René
Can someone tell me why serialize returns nothing? ul id=sort li id=1123/li li id=2abc /li li id=3456/li li id=4xyz/li /ul script type=text/javascript src=http://ajax.googleapis.com/ajax/ libs/jquery/1.2.6/jquery.min.js/script script type=text/javascript src=http://ajax.googleapis.com/ajax/

[jQuery] Problems using $.load() on remote contentw ith a large dropdown (select)

2008-11-19 Thread the_woodsman
Hi all, I have a html page with a massive (200+ options) drop down: select name=data[Something][country_id] id=someID option value=1United Kingdom/option option value=39Afghanistan/option option value=40Aland Islands/option etc etc! By itself, this paeg loads fine. When I try to ajax load

[jQuery] Problems with Multiple File Upload

2008-11-09 Thread dmackerman
I am having a slight problem with the multiple file upload plugin, found here: http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Support Here is my HTML form: form id=uploadForm enctype=multipart/form-data action=upload.php method=POST class=edit fieldset legendYour

[jQuery] problems with unhighlight of error labels with jquery validation 1.4

2008-11-05 Thread kedr
my js is as follows: var validator = $('#myForm').validate({ onfocusout: false, onkeyup: false, rules: { prefix: { required: true }, name: { required: true }

[jQuery] Problems with Firefox and JCarousel

2008-11-04 Thread Amit
forgot to mention that it's Jcarousel i'm about.

[jQuery] Problems with the JSON return from the jQuery.ajax() method

2008-11-04 Thread Augusto TMW
Hi, I'm trying do return a JSON with a $.ajax() method. here is my entire function: function carregaMes(d){ if(!(_reunioes[reg+d.month+d.year])){ $.ajax({ url: reunioes.jsp, data: mes=+d.month+ano=+d.year, async: false,

[jQuery] Problems with Firefox

2008-11-03 Thread Amit
hi all, installed the plugin and it works great of Safari but i seem to have problems in firefox, it looks like it doesn't initialize the plugin.. u can see sample here http://new.yalla-ya.com/melinda-nicci/ . i also dont get any errors at all in the console, don't see how it is related but it's

[jQuery] Problems with .load or something

2008-10-29 Thread Lomacar
I wonder if anybody can give some advice on this. I am not too experienced with asynchronous code. I am trying to load information from other pages on our website onto the home page, for a recent projects list. I want to be able to supply a simple list of names corresponding to web pages and this

[jQuery] Problems parsing XML with jQuery

2008-10-17 Thread Gissur Þórhallsson
I'm trying to parse this little XML document here: http://pastebin.com/m5f0e4300 with this code: function(response) { console.log(response.responseText) console.log(response.responseXML) try { console.log(Try and find nafn) console.log($j(response.responseXML).find(nafn).text())

[jQuery] Problems with find()

2008-10-15 Thread less than zero
Hi, I'm having some problems with a plugin I'm developing. I'm using '$(this).find('whatever')' to locate the relevant elements within the html code, which works fine if just one instance of the plugin is initialised. However, if multiple versions are called they start to conflict with each

[jQuery] Problems creating a simple auto-expand panel

2008-10-12 Thread Martin
Hi, I'm a jquery beginner and have problems creating a simple (?) effect on my page. I have the following markup: div class=panel div class=panelTitletitle/div div class=panelContentcontent.../div /div What I'd like to achieve, is that the panel content should be shown when the mouse is moved

[jQuery] Problems with IE 6

2008-09-29 Thread andrew
Hi I've just started using jquery and I'm developing a dynamic site so I don't need the same code on every page and I'm loading various different javascript files in based on the page, but nothings working in IE but it works fine in firefox and safari. I have all the jquery calls in functions

[jQuery] Re: FlexiGrid and JQuery Problems...

2008-09-25 Thread Eric
Hmmm... Well, it's valid JSON (http://www.jsonlint.com/), and valid Javascript. I removed %=Html.BuildUrlFromExpressionProjectController(c = c.UserList(ViewData.Model.ID))% from the code (but left the surrounding 'quotes'), and ran it through JSlint (http:// www.jslint.com/) and it only

[jQuery] Problems with Form Plugin

2008-08-19 Thread Jim Davis
I have a form page here: http://jimdavis.org/test/form1.php and the page for the form post here: http://jimdavis.org/test/comment.php Data from the form is not getting written to the comment.php file. At the moment comment.php is a completely empty file, no html head body, etc. Tried it with

[jQuery] Problems parsing posted array of objects

2008-07-20 Thread Mau
Hello, I have this on my client-side: script language=javascript type=text/javascript function BigAction(inputdata) { var url = 'index2.php'; $('#progressIndicator').show('fast', function () { $.post(url, inputdata, function(data) {

[jQuery] Problems with accordion plug in

2008-06-28 Thread kirstyburgoine
Hi, I'm having a few problems with the accordion plugin. When the page loads it automatically adds the class 'selected' to all my links. It shouldn't do this until I click on a link. Once you click on a link the plugin works as it should do except for the arrow buttons don't change. Can someone

[jQuery] Problems in beloved IE6

2008-06-27 Thread ethayer594
I'm using superfish 1.4.1 and jquery 1.2.6 here: http://www.goldfishnw.biz/TualatinFoodPantry/ CSS: http://www.goldfishnw.biz/TualatinFoodPantry/MainNav.css CSS: http://www.goldfishnw.biz/TualatinFoodPantry/superfish.css This is my first time using superfish and I got it to work in FF and IE7,

[jQuery] Problems with jQuery click functions embedded in AjaxSubmit Form Results

2008-06-25 Thread Adam
Hi, I have a page which shows data for the next 5 weekdays. It has two buttons which submit via JQuery AjaxSubmit to move the page back and forward days. This works fine. However, the details for each day can be collapsed via a button that is in the results for each day, i.e. name1 [+]

[jQuery] Problems in IE6 when masking domain..

2008-06-12 Thread blacque
Hello everyone, I'm new here, and I also new in jQuery :) I have an appearance page problem.. Firstly, if you visit this link, the appearence of the page is ok, whether you open it in Firefox or IE (6 and 7). http://www.asianbrain.com/index.php?aff_code=563232 But, the problem is when you

[jQuery] Problems in IE6 when masking domain..

2008-06-12 Thread blacque
Hello everyone, I'm new here, and I also new in jQuery :) I have an appearance page problem.. Firstly, if you visit this link, the appearence of the page is ok, whether you open it in Firefox or IE (6 and 7). http://www.asianbrain.com/index.php?aff_code=563232 But, the problem is when you

[jQuery] Problems Accordion plugin in IE6

2008-06-01 Thread kirstyburgoine
Hi I'm having some difficulties getting the accordion plugin to work properly in IE6. It works perfectly in firefox and Safari (although in Safari some of my borders are missing) but it drops down to far in IE6 You can view the problem here: http://www.kirstyburgoine.co.uk/biomass/Index.php Is

[jQuery] Problems when dynamically loading jQuery

2008-05-15 Thread [EMAIL PROTECTED]
Hi, I'm writing a script which is load from 3rd party sites, and my script depends on jQuery. In other words, I need to load jQuery from my script. The trick I'm using for that is to use createElement. function loadJquery() { var jsScript = document.createElement(script) jsScript.src =

[jQuery] Problems getting position of an element inside blockui

2008-05-14 Thread Giovanni Battista Lenoci
Hi, I'm having a problem understanding how to get the right position of an element inside a blockui div. I'm using blockui of Mike Alsup, and dimensions plugin. Here you can view an example page: http://lab.gianiaz.com/jquery/helptip-blockui/ In this page I use the jquery hover effect to show

[jQuery] Problems with order in animation

2008-05-14 Thread Max
I have a menu with 3 items: Agradecimientos | Comentarios | Contacto If I click one of these elements, a box may slide down, and show content. And if the box is already down (if one of the items is active), the box should firts slide up, replace the content with the new one, and slide down. So,

[jQuery] Problems with $.addClass()

2008-05-03 Thread rene.olivo
Hello, I have tried this code: $('#some_div').addClass('new_class'); And it works really well, it adds the class to the element. The problem is that if this element had previously had any style applied to it like: #some_div { color: #F00; } to change the color with the new class I'd have

[jQuery] Problems with jqm in IE

2008-04-29 Thread the_woodsman
Hi guys, After some laborious use of alerts, I've tracked down my bug in IE, and it relates to $().jqm(). I think It's a live query style issue (I'm not actually using live query!). I have a function that attaches events to elements, and this is called again when new elements are added via

[jQuery] Problems using dialog in blockUI plugin (vs 2)

2008-04-25 Thread Adam
I just 'upgraded' to blockUI vs 2, and for some reason the following code isn't working. It blocks the page, but everything shown is the blockUI defaults, not my custom dialog, etc. It works fine if I don't use the message: and css: syntax (i.e. I just put the dialog as the parameter).

[jQuery] Problems with selectors

2008-04-18 Thread JAT
Hi friends, I've just discovering jQuery and it's a great library. My Javascript's knowledge is not so good than I wish, I'm a newby in this world. I've problems to select a certain element on code HTML generated by php. Following tutorials, api's and rest of very good docs I can't resolve

[jQuery] Problems with selectors

2008-04-18 Thread Jat
Hi friends, I've just discovering jQuery and it's a great library. My Javascript's knowledge is not so good than I wish, I'm a newby in this world. I've problems to select a certain element on code HTML generated by php. Following tutorials, api's and rest of very good docs I can't resolve

[jQuery] Problems with selectors [SOLVED]

2008-04-18 Thread Jat
On 18 abr, 19:48, JAT [EMAIL PROTECTED] wrote: [...] I've problems to select a certain element on code HTML generated by php. [...] ,[ HTML Code ] | div class=box-general | div class=box-articles | [...] | {Article options linked with a or img tags} |

[jQuery] Problems with JQuery Cycle Plugin and IE6

2008-04-11 Thread kirstyburgoine
Hi, I'm relatively new to using JQuery so maybe making a newbie error bt can't see where. I've installed the JQuery Cycle Plugin on the homepage of a website I've built and it works perfectly in Firefox, Safari, and IE7 but it crashes IE6. I have used this plugin before and it worked perfectly

[jQuery] Problems with Migration from 1.1.3 to 1.2.3

2008-04-04 Thread superJ
Hello all, Since the morning I'm trying to complete this supposedly easy migration but for some reason it gives me a migraine %-|. The first problem I've encounter was $ is not a function when trying to call (previously worked with jQuery 1.1.3) function (sample call: $

[jQuery] Problems with form plugin + response xml + tickbox

2008-03-24 Thread Mileto
When I put the data of the form, it returns an XML if the information does not pass the validation. If the data is correct the response type is HTML. I'm using the Tickbox plugin to show this form. The problem is that if the response type is XML, i can't to call the success method of the Form

[jQuery] Problems getting timing of commands to happen correctly

2008-03-24 Thread Steve Reichgut
Hi everyone, I have been trying to use jQuery to create a relatively simple image rotator. The challenge I ran into with this script is that I want the new image to fade-in over top of the existing image. After many different attempts, I was able to get pretty close by using the following

[jQuery] problems with event triggering in IE6, presumably 5.5 as well.

2008-03-05 Thread hedgomatic
Hi, I'm working on getting what should be a simple rollover effect done in jquery, and it works like a charm in firefox and safari, but IE is not having any of it. the page in question is here: http://www.awayfromkeyboard.com/nymphomania/ here's the relevant code: jQuery:

[jQuery] Problems with .load

2008-03-02 Thread MoRtYMer
Hi, I'm new to jQuery and I'm having some problems, so I turn to the pros. I try to do an ajax submit, that for example erase an entry from a database, all goes well, but when I use $ ('#employees').load(empinc.php); to reload the employees info, and then try to use another .click event, to

  1   2   >