Jquery UI Accordion does not work when created dynamically with web database
This accordion works fine when it's on the page by itself, but when I dynamically populate the individual title/content pairs via a web database, the title and content are both visible fo rall entries instead of just the title, so the accordion function ceases to work. Is there a problem with the way I implemented it, or do they simply quit working when innerHTML is involved? The rest of the database (inserting dictionary term and definition in 2 different fields) is functioning flawlessly without
let tablesorter know table was updated
I have tablesorter installed and working just fine. Now I want to have the table in question to be dynamically updated, with the script below, which also is working fine. As it happens, once the table is updated tablesorter no longer works correctly. The question is, how can I tell tablesorter from within my script that the table was updated so that it will sort the new result set? I have looked and the post below and updated my function accordingly, as well as the tablesorter script itself as indicated,
jquery.effects.core.js, jquery.effects.blind.js and jquery.datepick.js are conflicting
I am using Keith's superbly easy to use Date Picker but if I add the files jquery.effects.core.js and jquery.effects.blind.js to my web page then the data picker stops working. I am not able to sort out this problem any idea as to what must be conflicting here?
Jquery touch swipe slider for mobile
I created a slider with jquery touch swipe..my images are 827*1169 so i want to show 2 images in landsacpe and one image in portrait mode for all mobile devices How can that be achieved? Thanks <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes" /> <!-- META --> <meta charset = "utf-8"> <link rel="stylesheet" type="text/css" href="style.css" /> <script type = 'text/javascript'
Context Menu-Reg
Hi, How to implement Context menu as i like, because i found so many plugin all the menu showing same content for all, but i want like below CCA CCA2007 if right click : 1."Add CA" 2."Add Trust CA" CA if right Click : 1."Add Sub CA" 2."Edit Sub CA" Please help me to implement the above using context menu Thanks in advance Regards G.Lenin
jQuery SVG - Cannot apply multiple Transform attributes one by one
I am trying to apply transform attribute to an object like this: var svg = $('#svgphone').svg('get'); var cx = eval($('#img', svg.root()).attr('width'))/2; var cy = eval($('#img', svg.root()).attr('height'))/2; r = 45; var rr = r + ", " + cx + ", " + cy; $('#img', svg.root()).attr('transform', 'rotate(' + rr + ')'); Now if I apply another attribute for scaling like this: var svg = $('#svgphone').svg('get'); myScale = 101; $('#img', svg.root()).attr('transform', 'scale(' + myScale + ')') ; The previously
Selecting a jquery tab from javascript based on the url parameter
I am using struts jquery plugin in my application. I have a jsp page which is rendering the tabs <sj:tabbedpanel cssClass="customtabbedpanel" id="tasks" > <sj:tab cssClass="customtab" id="list_tasks" href="task_list" label="Task List" /> <sj:tab cssClass="customtab" id="task_create" href="new_task?type=task_create" label="Create Task "/> </sj:tabbedpanel> By default the first tab will be selected and the data returned by the server in the task_list call will
How to set the Image Slide Show using jQuery?
Hi, This is Tamilmani Mohan , i am new member for this jquery forum. My Issue:- I got one of the jquery plugin for Image Slide Show. it will works fine. But my issue is , i have one ajax form , after the form submission , i am called ajax function. Once ajax function is succeed. I need to show the Image with Slide effect. But now i am not able to do that. Could you please any one help in this issue? Thanks Tamilmani Mohan
JQuery error : Not implemented
Hi, I've got this error when calling my fancybox frame in IE 8. It works perfectly fine in firefox , chrome and even in IE 8 before it was published. Can anyone knows how to crack this one? Thanks in advance for the help.
plugin for selecting files
Anyone know of a good plugin that I can use for a dialog box for navigating and selecting files (just like when you select "Open File ..." for example)?
AutoComplete Problem - Styling of ui-autocomplete-loading Not Working
I've taken the autocomplete demo, and I'm trying to set some feedback by styling the ui-autocomplete-loading class. I set the background to an image, but that image never shows when the search is running. I've confirmed the image is accessible, and if I step through the autocomplete code for the "search" event, it sets the style as it should, and in fact by stepping through the code, the image shows on the page. But if I just let it run straight out without debugging the code, the image never shows
Social Stream plugin issue
Can anybody spot anything that might be a syntax error here, in the Social stream plugin: It's not showing in IE8 and I'm pretty sure it's a syntax error of some sort. The live page is here: http://www.findlayinternet.com/code/clients-live/HancockParks-social-stream.htm Thanks for any suggestions, commas at the ends of lines sort of gets me, I've tried several options. <script type="text/javascript"> jQuery(document).ready(function($){ $('#social-stream').dcSocialStream({ feeds: { facebook: { id:
Cycle plugin not working with divs for me.
I have a problem getting Cycle to display my div's correctly in a slideshow. I have a div with a background picture, this div and picture is set to scale to the size of the parent div, depending on browser window size, and image is scaled to fit in height, center and hiding overflow. With a static div this works nicely, resizing browser window works as I want it to. Now, I want the background pictures to run as a slideshow, but when setting up a number of divs with different background images things
jquery.visualNav.js not working
Hi , I am using jquery.visualNav.js for one pega sliding and jquery-1.6.3.min.js for slider effect. But when i use both , the one page slider effect is not working like should. Can you please help me ? www.lew1s.com
Tablesorter sortForce bug
The documentation says: sortForce: Use to add an additional forced sort that will be appended to the dynamic selections by the user.but it doesn't work as advertised. If you look at the example page: TableSorter sortForce Example The sortForce is set to the first column (First Name) ascending. If you click on Total to sort you will see that it doesn't sort by the Total but instead it is still sorted by First Name. This isn't what sortForce says it does. Oh and by the way the example page says: //
Issue with jQuery cycle2 on iPad?
I have run into an odd situation with the beloved cycle2 plugin. I cannot get it to work on my iPad. The cycle works just fine in other browsers, but not on my iPad (which is still on ios4). I started pulling apart my code to see when/if it started working on my iPad and it never did. If I access this page -- http://www.malsup.com/jquery/cycle2/demo/carousel.php -- it DOES work. However, if I grab all of that code (which has absolute links to the js and images) and put it in my test page....
In jQuery SVG why do coordinates not work as expected
I load two images in jQuery SVG using the code: svg.image(0, 0, 330, 540, 'images/img1.jpg', {id: 'img'}); svg.image(0, 0, 330, 540, 'images/iPhone5png.png', {id: 'imgphone'}); After the images are loaded it looks like this: I rotate the images (of bottles) to 90 degree using code: var svg = $('#svgphone').svg('get'); var cx = eval($('#img', svg.root()).attr('width'))/2; var cy = eval($('#img', svg.root()).attr('height'))/2; r = 90; var rr = r + ", " + cx + ", " + cy; $('#img', svg.root()).attr('transform',
jQuery SVG - How to save complete SVG as show in browser to a PNG file?
In the project that I am implementing I have a need to save SVG to an image file preferred format is PNG and PDF. How can we export contents of SVG to PNG and/or PDF? Regards, Yogi Yang
Jcycle - add class to navigation without activating the links
Hi I am using great Jcycle plugin and having issues using multiple slideshows in one page. My slider contains: photos, navigation and an one arrow I would like only the arrow to slide the photos and the navigation just to change color whenever one is activated. The problem is that each time a navigation item is highlighted it also controls the slider and I dont want that to happen. I do want to keep the "Active" css state but disable that function that controls the slider. (in my case the pager are
How to force jQuery SVG to embeded images instead of linking them?
I have a need to render SVG to PNG for this I am trying to use canvg javascript. This script works fine but it does not work on linked images. So how can we force jQuery SVG to embed images instead of linking them? TIA Yogi Yang
Change target from tinyscrollbar to body when reaches top/end of it
Hi everyone!, This is my very first post here and I hope to have the beginner's luck.. I have a div "list" attached with the tinyscrollbar plugin (PlugIn Page). In order to accomplished that, I had to create some divs inside of it (divs that the plugin needs, such as thumb, track..).. here is the code: <div class="list"> <div class="scrollbar"> <div class="track"> <div class="thumb">
cycle plugin updateActivePagerLink not triggered
I have this setup for cycle plugin jQuery("#frame").cycle({ updateActivePagerLink: function(pager, activeIndex) { jQuery("#slider-nav").find("li:eq("+activeIndex+")").addClass("current") .siblings().removeClass("current"); } });However I find that the call back function is never triggered. Any ideas? The code is here: http://theparentingplace.automatem.co.nz
PROBLEM WITH CYCLE: Help
Hi guys, I am having trouble with a slider I've added to my Wordpress-based page. It loads the first image correctly, but then loads the one of the first entry in the blog and shows it for all other entries, with the right image being shown briefly as the slide passes to the next entry. After one cycle, it starts loading correctly. It's driving me crazy!! This is the page http://eloyvillanueva.es/1erciclo/ Any help would be much appreciated
ColorPlugin – Script stopped working
Hello, I have the script below running on my website to make text's color change after a given interval. It's kind of stupid, I tried to add something and clean it up, but now it stopped working and I can't find the error. It's supposed to randomly choose from a set of colors (myColors) and apply it to the text's color of certain elements, defined by class or tag. All of this should be repeated in a given interval. My skills don't seem to be sufficient for finding the error... <script type="text/javascript" src="http://52146187.de.strato-hosting.eu/Cargo/jquery.colorplugin.js"></script>
cycle plugin: navigation outside cycle requires fadeTo twice to take effect
Hi, I have implemented jquery.cycle here: http://theparentingplace.automatem.co.nz The page has a pre-existing navigation. On click of any of the navigation elements I run: jQuery('#slider-nav li').removeClass('current'); jQuery(this).parent().addClass('current'); jQuery('#frame img').hide(); jQuery('#img2').fadeTo('fast', 1); jQuery('#img2').fadeTo('fast', 1); jQuery('#img2').css('cursor', 'pointer'); Query('#frame').cycle('stop'); return false; I found that to make the image corresponding to
Slide_interval different in Supersized Slideshow
Hi. My name is Carlos and I write from Chile. I've downloaded Supersized and find it extraordinary, I read the documentation, because I need a function that does not match. I need pictures or slide_interval is different for each of them, that is, that a photo last longer than another and that this can be set from js. It would be a great relief to my work your help. Thanks!!!
Is there some jQuery conflict here?
I'm customizing a wordpress theme called Accordium, and I have decided to add infinite scroll to it using a wordpress plugin called pbd-ajax-load-posts. In the theme, when you click on a post in archive view, an accordian animation plays by standard. The problem is, the plugin fails to render the default accordion style of posts in the archive when you click on Load More Posts [farthest bottom, in Persian] and shows it like when a post is clicked, leaving it with a fixed open accordian. screenshot
jquery.corner.js plugin, I can't get it to work on images
I have the code corect for jquery to make rounded corners.. I have tested it with just a background color, and it works fine. However, I want to apply the corners to images. It just won't work for me! I have created an example page where I have the image with the class, right next to a div with the same class but only has a background color.. The image won't work, but the colored 'box' will. I have tried coding it three different ways, and it still wont work. (I don't need all three ways of coding
jQuery BlockUI Plugin - Firefox animated image does not work
Hello, I'm using the BlockUI Plugin found here: http://www.malsup.com/jquery/block/ using the latest Firefox browser. I can't seem to get any animated gifs to move inside the submit click function. The gif is displayed but it does not move. If I put the code outside of the submit click function it works. Below is the code I am using. Thanks for your help. $(document).ready(function () { $("#upload tr:even").css("background-color", "#D0D0D0"); $("#upload tr:odd").css("background-color",
Watermark Plugin
Hello everyone, if someone can help me with the following problem, I'd greatly appreciate it. So I've downloaded the jquery-watermark.js and integrated it into a demo project to show you. 1) If you open the project in chrome, and when the textfield is empty, the watermark SHOWS. What I mean by this is if you repeatedly delete a letter in the textfield until it becomes empty, the watermark then shows!. In I.E, it will show only when I blur out of the text field or on startup. Can i get this same
update in realtime using - jQuery
using ASP.NET I use a repeater to displaying a DB table on screen. I want the user to be able to check or uncheck a tick box(field in the table). Updating the corresponding field in the DB in Management Studio on real time..... Looking through google. JQuery seems the way....so far I have got... in code behind: //GetUtilityCompanyNames() returns a list of all the companies names rptSelectedUtilities.DataSource = GetUtilityCompanyNames(); rptSelectedUtilities.DataBind(); In aspx: <asp:Repeater id="rptSelectedUtilities"
[jQuery] Superfish Drop down Not Working
My jQuery Superfish drop down list is no longer working. There have been no changes to the site recently. http://www.engineeredcontrols.com/eci/projects.php Can anyone lend some assistance as to what may be causing the issue? it worked before, no changes have been made. thanks -dp
jquery easing.1.3 js plugin
How to use jquery easing.1.3 js plugin with wordpress ? because is not wordpress plugin so I am struggling to installed it to my wordpress theme. please help
Datatable plugin advantages
Can anyone tell Datatable plugin( http://www.datatables.net/ ) advantages?
ajaxform + file upload + random issues + using <textarea>
Hi, I've implemented ajaxform with file upload on this site: https://apply.salk.edu/?eid=a4826f4dd8643e5b5170a9fa60f9229d (Use 619-222-2222 to get the prefilled data) I'm having about a 10 in 100 fail rate for the file uploads, but I can't reproduce the problem on any of the browsers. I'm told the progress bar (blockui) just spins and never completes ... and the files sometimes do and sometimes don't upload. I have been capturing the user-agent strings of these browsers here's a sampling: Mozilla/5.0
Jquery plugin not working until you refresh
I'm fairly new to Jquery but have a solid understanding of HTML & CSS. I'm currently building an app which uses the Photoswipe plugin. If I link to the page with the plugin it doesn't work BUT if I refresh the page in a desktop browser, it loads. It doesn't work when compiled on a mobile device at all though (as you can't refresh). Any suggestions?
jQuery SVG cannot transform text object
I am adding a text object using following code: svg.text(300/2, 540/2, 'Sample Text', {fontFamily: 'Verdana, Arial, Helvetica, sans-serif', fontSize: 42.5, fill: #000000, id: 'txt'});Now I want to rotate this object so I am using following code: $('#txt', svg.root()).attr('transform', 'rotate(90, 0, 0)) ;But this does not work. What to do? TIA Yogi Yang
jQuery SVG resize an object to size of container
I am loading an Image in jQuery SVG. Here is the code that I am using to add Image object to SVG canvas: var svg = $('#svgphone').svg('get'); var img = svg.image(0, 0, 330, 450, 'images/img1.jpg', {id: 'img'}); svg.title(img, 'img1');Here I have to give location and size of object that I am loading. But before I give the size I want to resize the object so that it fits within the container while maintaining it its proportions. Here is the HTML part: <div id="svgphone" style="width:330px; height:540px"></div>
jQuery BBQ Plugin Selector doesn't work
I'm loading a PHP Page with BBQ Plugin: $(function(){ var cache = { '': $('.bbq-default') }; $(window).bind( 'hashchange', function() { var url = $.param.fragment(); $( 'a.bbq-current' ).removeClass( 'bbq-current' ); $( '.bbq-content' ).children( ':visible' ).hide(); url && $( 'a[href="#' + url + '"]' ).addClass( 'bbq-current' ); if ( cache[ url ] && url == "") { cache[ url ].show(); } else { $('.bbq-loading' ).show(); cache[ url ] = $( '<div class="bbq-item"/>' ) .appendTo( '.bbq-content' ) .load('session.php',
My Flexslider slide dissappears when I remove www
Hello, I have a flexslider slider, when I remove the www from http:/www.domain.com to http://domain.com, the images and the slide disappear Help appreciated Many Thanks
Next Page