$.load() is not working in ie
i have the following code; $("#testbtn").live("click", function(){ $("#targetdiv").load("http://localhost/test/test.php"); }); but it is not working in ie but working fine in chrome firefox safari etc... ...
i have the following code; $("#testbtn").live("click", function(){ $("#targetdiv").load("http://localhost/test/test.php"); }); but it is not working in ie but working fine in chrome firefox safari etc... ...
I am attempting to return columns of text where a column contains certain text. For example: the text i'm looking for is "02/06/2010". <table> <tr> <td>Item Title1</td> <td>Item Category</td> <td>02/06/2010</td> </tr> <tr> <td>Item Title2</td> <td>Item Category</td> <td>02...
Hi all! Title says it all. I have an XML file containing different testimonial quotes, including the name of the person they're quoted from. I have a DIV on my page, and I want it to rotate randomly between these XML testimonials - LIVE (without refreshing). If this can be done easily in JQuery, that would be even better. I'm just t...
Has anyone seen a tutorial for a jQuery 3D carousel like this one? http://web.enavu.com/demos/3dcarouselwip/ No source is given, but was wondering if anyone had tips on how to continuously circle the DIVs and resize them. It doesn't appear to be true 3D, but resizes the DIVs based on position? Thanks, Juan ...
Hi, I would like to make a timepicker similar to the datepicker, conforming to the current UI Theme. Can I copy, or somehow inherit, the CSS properties from datepicker to my timepicker? I do'nt want to copy the behaviour of the class, just the CSS props. (I've seen other timepickers out there, but I'm not really happy with any of them....
I'm trying to place separate error messages in separate elements when validating a large form. The form is divided into jQueryUI tabs, then accordions. When there is an error in an element of a tab, I want to append a red exclamation point to the name of the tab, and if the error is in an accordion element, I also want to append the re...
Hello Folks, I am new to JQuery and have a similar requirement as David. I have a sample code as given below. It works fine, except I need to display it as a table with tr and td tags and the animation should be like toggleup. So basically, when I mouse over the tr elements, the corresponding td elements should pop up for t...
hi, have following issue with jquery slider ui: http://mayacove.com/dev/slider/slider2.html slider works only when you drag handle, i.e., when you drag the slider the divs show and hide as expected (divs change as slider slides..) but: if I CLICK on any point on slider instead of dragging, divs change ONLY if I click on a precise sp...
I need to display a banner that sticks to the bottom of the browser. So I used these codes: $(document).ready(function(){ $('#footie').css('display','block'); $('#footie').hide().slideDown('slow'); $('#footie_close').click(function(){ $('#footie_close').hide(); $('#footie').slideUp('slow'); }); }); And here's the HTM...
I want to create a javascript file for multilingual functionality i.e. display the error message in the correct language. If I have allot of labels for a page, error messages, etc., what is a smart way of making this so the actual output on the page isn't huge? i guess the best way is to somehow output the labels that I need ONLY? la...
I have an jQuery accordion for a form on an internal company website. They seriously want to stick with their ASP.net technology (I know I'd bark at them if an intern could do that reasonably). Project description: Creating a basic CRM form The first slide of the accordion has their basic input for recording contact information which...
Hi, I am trying to create dynamic selection boxes with Jquery. Due to requirements, I have 5 selection boxes with similar Class contents e.g. Class A, Class B, Class C, etc. I have another 5 Student selection boxes besides each of the Class selection boxes. So the idea is that when I select a class selection box, javascript will chec...
Hi Guys, I'm trying to parse some XML data using jQuery, and as it stands I have extracted the 'ID' attribute of the required nodes and stored them in an array, and now I want to run a loop for each array member and eventually grab more attributes from the notes specific to each ID. The problem currently is that once I get to the 'for'...
i am using "beassistance validation" for my form and using tooltip plugin and it work fine except that positioning. please have a look at this link and i upload my form to get an idea what i am talking about. what i want is: if my validation fails i want to display the message after the tooltip icon, but its displaying the message bef...
I've got an input like so: I'd like to use jQuery to grab that element, and add the function call foo() to the change event. Currently I can get it done, but there are two hacks involved. My (working) code: $(":input[name*=myfield]").change( function( $(":input[name*=myfield]") ) { foo(); }); )}; There are two hacks in there ...
Hello everyone, I went through these topics for a solution to my problem but I think my question is a bit different. http://stackoverflow.com/questions/180451/using-javascript-and-jquery-to-populate-related-select-boxes-with-array-structur http://stackoverflow.com/questions/1255992/populating-a-2nd-select-box-binding-problem I have ...
i have a table named news with 3 fields i.e (id, news, time) and i have a setInterval after every 3mints to fetch news from google or any news site .... now i want to fetch only new rows inserted after every 5 minutes...with jquery $.ajax()...how can i do that... do i reload the whole table or there is a way to fetch only the new ones....
Hello, I have the following code <div> <a href="#" class="clickMe">test</a> <ul> <li class="action_li">1</li> <li class="action_li">2</li> </ul></div> <div> <a href="#" class="clickMe">test</a> <ul> <li class="action_li">3</li> <li class="action_li">4</li> </ul> and I want to loop on all the <li> that ar...
Hello there. I've looked around the forum, but cannot seem to find a definite answer to this problem... I'm using jQuery and TinyMCE on our website. I've gone through the docs of TinyMCE, but am still getting lost I'm afraid. We're doing an interface that requires edit-in-place in multiple places in the page. The only thing is, each of ...
I'm trying to enable the overlay to be modal. It works perfectly fine in FireFox, but the window object is behind the mask when it becomes modal. This prevents any interaction with it and the page is actually useless. I've tried debugging this for a while and can't figure it out. Here is a link to the example on their site: http://flow...