jquery

Why does my Javascript function only work SOME times?

My sandbox is here: http://9.latest.truxmap.appspot.com/ First click a marker on the map (if there are none when the page loads, check the 'food trucks opening soon' box in the navigation widget). Next go to the 'Reviews' tab. In GWT, everytime I open a marker I'm calling the javascript function resizeReviewTab() which corrects styli...

Find out if browser is IE6 or before

Possible Duplicate: Detect Internet Explorer 6 or below in jQuery Is there a way of detecting if the browser is pre IE7 (so IE6 or before) using javascript or jQuery? I found a similar question on here where the answer was basically "don't do that". Well, I don't care, I still want to :) ...

jQuery, DB Update/Display Problem

Hi, I implemented a thumpsup function in php. the view holds a thumpsup button and everytime the user clicks on it the db is updated. I am working with zend framework, so I have a url mypage.de/articles/thumpsup/id/x this url points to a specific acion/function in my articles conroller, but this function does not return any data, it jus...

Using CSS3 Pie with jQuery BlockUI

I am using CSS3 Pie for doing cross browser border-radius and box-shadows. This works really great. But when used together with the jQuery blockUI plugin (using modal dialogs), CSS3 Pie functionality does not apply to that dialog element. This is because of the z-index problem with position:fixed , which is also described here. I alread...

Google Appengine & jQuery: Error 414 (Requested URI too long)

I have problems posting data to my local appengine application using JQuery Ajax. Here is simplified client side code: text_to_save = 'large chunk of html here' req = '/story/edit?story_id=' + story_id + '&data=' + text_to_save; $.post(req, function(data) { $('.result').html(data); }); Here is simplified server side code: class S...

Problem with input fields in Chrome,FF,Opera,Safari, not in IE

I'm using the AutoSuggest jQuery Plugin: http://code.drewwilson.com/entry/autosuggest-jquery-plugin So basically what it does is create a hidden input field containing comma separated values; the IDs of the Names in the AutoSuggest field. Using Firebug, I confirmed that the hidden field was created and the IDs were inserted in the 'valu...

.offset() bug with position absolute?

The CSS: .flyoutdialog { position: absolute; top:0; left:0; border: 1px solid #CCC; background-color: white; width: 250px; padding: 10px 10px 10px 10px; } The jQuery: (dialog is 1 item of $(".flyoutdialog"), button is 1 item of $(".flyouticon") ) var offset = button.offset(); alert("top: " + offset...

Javascript / SWFobject | Determine if a swf object exists when creating dynamic embed objects.

When I create SWF objects that are temporarly hidden in tabs, thus not fully loaded in some browsers, like FireFox, I can't seem to find way to figure out if the SWF is loaded or not, so I can communicate with it. /* Generate SWF (onDocumentReady())*/ swfobject.embedSWF("graph.swf","line-graph-one","100%","250","8","expressInstall.swf"...

jQuery nested array

Afternoon, I have set up the following, the nested ifs are working however when i'd like to be able to pass the title of the array to the alterFields() function, that way the function will cycle through each field stored in the array and apply the CSS class relative to that array (i.e. I have applied the same name to the array as the c...

jQuery Basic problem

Hi, I have a page that display some data. It is loaded from a database using php and mysql, I use zend framework to handle all this. On this page I have two things that use jquery. one is a paginator and the other is a thumps up function. the paginator works fine. It receives the data as json and applys it to the view. all the functio...

I need jQuery advice

Hi. I am writing my first project in PHP and I have a problem connected with jQuery. In my test.html page I have a <div> and in there are 3 buttons, one above the other. When the user clicks the top button, I want a new <div> created under that button with a textbox and one new button (x button). The other 2 buttons must be moved. Aft...

Best IDE for Java Script also JQuery

Possible Duplicate: Good JavaScript IDE with JQuery support ? I am a Web Developer, working on Javascript and Jquery. Right now I am using EditPlus for development process. Faceing lots of difficulties. Please let me know Best IDE for Javascript / Jquery. ...

Rearranging the page elements - JQuery

Hello I want to rearrange the elements in a page as i wish; for example visit http://www.pageflakes.com/. How can i achieve that using JQuery? Is there any plugin? If not, how to start creating this? Any insights? ...

Show hyperlink and popup window when Mouseover on image !

Hello , I am developing a web application using asp.net, telerik RadAjax control. I have to need to develop when mouseover the image then show a hyperlink and when click the clink then open a new window(like facebook profile picture change). Please Help me... ...

jQuery animate not working in chrome/safari/ie

I have written a few lines of jQuery to animate a div to the left/right depending on mouse movements $(".galleryNav").mousemove(function(e){ $("#status").html(e.pageX +', '+e.pageY); if(e.pageX > 1100 && e.pageX < 1170){ $(".galleryNav").animate({marginLeft:"-60px"},{queue: false, duration: 450}); } if(e.pageX > 410 && e.p...

jQuery breaking in Firefox but good in Safari

Here's the page to reference to: http://dev.thriveafrica.org/invest/ In Safari, when you select one of the monthly options, the box turns blue and expands with some text in it. In Firefox, it turns blue but the box doesn't expand to show the text. Here's the jQuery behind it. Excuse me if it's messy: $('#monthly .own, .you, i...

Popup and jQuery

I am using a popup window and I am having a form on that and after submitting the form I am not able to get the confirmation on the same popup window. Instead it redirects to the original page. http://careertel.in/index.php In the above site, there is one for on the home page itself at the bottom of the page "Candidates Register Here"...

Dynamic width workaround for IE

I have a jQuery drop down navigation that adjusts its width in accordance with the longest item in the list. This works perfectly in Firefox and Safari but for some reason in IE the width is extended the entire length of the page. If I set a fixed width the problem is sort of solved, however then I need to worry about updating the width ...

JQTransform - Exclude an element from styling?

I'm using JQTransform to style all form elements. Is it possible to disable the styling on a specific element, leaving all the others styled by JQTransform? ...

php jquery dynamic google ads

how can i fetch google adsense ads with jquery ajax and display them... ...