Bug with iOS 7 in Guided Access mode and JQM
Can anyone give me any insight as to how this problem might be resolved? With iOS 7, in Guided Access mode, the Select input no longer brings up the selection list. It just highlights and does nothing. To demonstrate, use this link to JQM 1.3.2 demo page using an iPad with iOS 7 and Guided Access turned ON (details below): http://view.jquerymobile.com/1.3.2/dist/demos/widgets/selects/ Steps: 1) Turn on Guided Access in iOS 7, on an iPad, Settings - General - Accessability - Guided Access - ON -
Jquery dialogue box on windows xp IE 8.
I am using Jquery dialogue box on windows XP IE 8. I am getting following error Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917) Line: 0 Char: 0 Code: 0 On other versions of IE and other browsers everything is working fine. For using a dialogue i have used it in a traditional way, by using a div with an id <div id='x' style='display:none'> Hello </div> and using it like $( "#x" ).dialog({autoOpen: false, modal
Disable collapsible [SOLVED]
Hi, I disabled a collapsible via javascript: my_collapsible.collapsible( "disable" ); But now the collapsible looks like the other ones but it does not react when I click on it. Is it possible to dynamically change the collapsed icon to a cross and gray out the text so it is visibly disabled? Thank you!
Dialog Modal disable all page, even dialog modal
Hi, when i use dialog as modal all page get disable even dialog and all controls inside dialog. Any idea about it? Thanks in advance.
Error using PlugIn printThis
Hello everyone I'm trying the contents of a JQuery dialog to print. I put this one the JQuery plugin print this. JQuery Version: 1.9.1 JQueryUI Version: 1.9.2 The content of the dialogue is an image which is larger than the dialogue is therefore a vertical scrollbar visible. In Firefox everything is OK, but I get the following error message in IE9. Error calling scrollable.onBeforeSeek: TypeError: Permission denied. I hope someone can help me. Thanx Talki
jquery Animation problem
Hi, I have a little Issue When I hover on cartbox button then it shows cartbox toggle effect(small-big animation), I need when user hover then it goes bigger and when user hover out it goes small but it animating continuously. checkout the link http://www.fltech.in/template1/ rollover on cartbox buttons
.has()
I am also trying to use the .has() filter to add a class to the text inside the Div tag "Test". It doesn't work. I don't seem to figure out what I am doing wrong here.... <script type="text/javascript"> $(function() { $("div:has([id=first])").addClass("a"); }); </script> <style type="text/css"> .a { color: Navy; } .b { color: Maroon; } </style> <div id="first">Test </div>
Uncaught TypeError causes dropdowns not to work
Hello, I'm trying to get a dropdown menu in wordpress to work properly and I think i have a jquery error keeping it from doing so. Can anyone assist and let me know what is wrong and where to find the error. I have both jquery 1.8.2 and 1.6.4 running. The error i receive is: Uncaught TypeError: Object [object Object] has no method 'on' hoverIntent.min.js?ver=r7:1 a.fn.hoverIntenthoverIntent.min.js?ver=r7:1 (anonymous function)(index):154 e.resolveWithjquery.min.js:2 e.extend.readyjquery.min.js:2
Why some Jqueries work and some don't?
Hi; I have a page with lots and lots of Jqueries but only some of them work! What I can tell is that Jquery is being loaded and accessible by the page. The page is HERE. For example when I click on <a id = "rubber"> (the RUBBER button), it should change the value of the text box above but it doesn't. It's in line 400 of my code: //Rubber $('#rubber').click(function() { $('#buttonStyle_DB').val('2'); }); Thanks for help.
Accordion on SharePoint's td element
I'm trying to use Accordion on my SharePoint project and I have this CEWP using JavaScript that creates a header placed under <td> element (see attached) class name "sectionHeader" the problem is its not working. Do we have some work around so I can use it on a table tag?
Accordion Positioning of Headers
Hi Looking for some help in trying to resolve what ought to be a simple problem. I have a very straight forward accordion setup, as per following code. It uses standard <h3> elements for the headers, and insofar as that goes it's working great. However, the extra bit I'm trying to achieve is in getting the web page to scroll so that the header that is clicked upon positions to the top of the viewport. For example, if I click on an expandable <h3> header within the accordion, that section expands
How to send a form using Ajax and jQuery Validation?
Hi I'm using the jQuery Validation plugin. When I press the submit button, I get forwarded to my php file which is included to the action attribute. I just want all the data get sent to my email without to jump to the php file. So how would use Ajax on this plugin?
using setInterval to check for a file I am waiting for
I am try to make a timer that periodically checks to see if a file has been written. Once the file exists I will read it and format output. This is what I am trying, but it seems to have created an infinite loop and I never get to success: <!DOCTYPE html> <html> <head> <title>timer</title> <script src="http://code.jquery.com/jquery-latest.min.js"></script> <script> $(document).ready(function(){ var myVar=setInterval(function(){myTimer()},1000); function
Datepicker
My question is how i can combinate the funtion beforeShowDay with onSelect: function(date, instance) { window.location = date+".html"; } (thanks kbwood.au) is already running with the second, but i cant make works with the other, i want that just the saturday is enable and in the same time when i click on the saturday can redirect in another html acording to the date(done)
Jquery AJAX problem
Hi, Im trying to do a SELECT REPLACE an old email with a new email in side MYSQL Thanks // search and replace email $("#myemailreplace").click(function() { var oldemail1 = $("#oldemail").val(); var newemail1 = $("#newemail").val(); $.ajax( { type: 'POST', url: "fixemail.php", data: {oldemail : oldemail1, newemail
reset value
code below worked great but when I switch back and forth between car 1 and 2 the value didn't reset. ok, here the problem... first select "One A" from car 1, hit submit, the values show below Form Fields: A=1 B=0 then select "One B" from car 2, hit submit, the values show below Form Fields: A=1 B=1 how can I reset the value of A=0 since the car 1 drop down is not visible at this time. Or can I just set the attribute for the hidden field to disable so it won't be pass to the next page? thanks
pop up dialogue box that would b closed after reading
Hi I have gone thru and tried without success to add a simple pop up dialogue box for a site I did. I just want a small dialogue box to open with a few sentences that can be read and closed afterwards. I want it to sit on top of the home page. Anyway I tried the codes supplied but it is in the body and just appears on the page as regular copy in a weird spot or if I follow the code exactly and put it in the opening and close tags of the body nothing else shows up, as expected. How do I add a dialogue
Android Back Key doesn't work after accessing page with data-ajax=false link
i'm trying to build an app using phonegap and JQM.. i add exit dialog in my app which if the back key in the main page pressed the exit dialog will shown. my code running well, but after accessing page with data-ajax=false link, the back key cannot work. anyone can help me to solve this problem ?, please thanks before.
How to add jQuery in Magento ?
You are developing an e-commerce site using the Magento platform. You need to incorporate Flow player in to the site and for that purpose you want to use jQuery. You will find the way to to add jQuery in Magento in this review: http://www.magesolution.com/blog/how-to-add-jquery-in-magento/ I also recommend the way to combine of Magento and JQuery at Here
Older jQuery plugin not yet working with newer WordPress site
I have an older jQuery plugin that works fine in a basic HTML web page, but not very well when I try to bring it into a WordPress page that's probably using a newer version of jQuery. In particular, my WordPress site (version 3.7.1) is making use of a newer jQuery library, while the plugin is based on an older jquery-1.6.2.js library. In the functions.php file of my site I've tried using the following code to bring a.) the necessary CSS, b.) the 1.6.2 javascript library, and c.) the plugin's javascript
localStorage not saved when link takes me to another website
Hi, I am having problems with localStorage. Whenever a link takes me to another website and I use the back button to return to the jquery site, localStorage appears to have been cleared. Do I have to explicitly tell jquery to store the localStorage variables as data for my website. I am new to using localStorage and do not know what I am doing wrong to have my variables 'disappear' when using the back button to return from a another website. How do I permanently store the local storage so that visiting
JQuery ajax call to sharepoint 2007 lists.asmx (special character in answer)
Hello, I've got a really strange problem into a plugin I'm trying to update from JQuery 1.6 to 1.9.1. I have a function that call a SharePoint 2007 asmx. This asmx is returning some xml in soap format. Once I have the answer, I'm using find function to get value from the soap. It was perfectly working, but since I've upgraded to 1.9.1, I'm getting some special characters in my answer. This cause the xml to be not parsable. Do you have any idea on how I can make the answer not containing these characters?
Loading JQuery into Joomla 3 for date picker
I've been having some trouble lately getting the JQuery datepicker function to work in a custom Joomla module. I use Jumi to integrate a PHP file into the website that displays a datepicker application in the frontend. If I'm using it correctly according to the JQuery website I have to call for the following files: <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> Doing it like this works fine, the date pickers does
Loading JQuery into Joomla 3 for date picker
I've been having some trouble lately getting the JQuery datepicker function to work in a custom Joomla module. I use Jumi to integrate a PHP file into the website that displays a datepicker application in the frontend. If I'm using it correctly according to the JQuery website I have to call for the following files: <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> Doing it like this works fine, the date pickers does
Adding bullets on Imageslider
I want to show sliding images with bullets over it, as in http://www.alexcreedy.com/slider/slider_v2.html I don't know any thing about jquery. Thnks.
jQuery UI 1.10.3 with jQuery 2.0.3
Hi all, Does anyone know if jQuery UI 1.10.3 will work with jQuery 2.0.3 as its core reference or do I need jQuery 1x? When I try to add jQuery 2x, my jQuery UI element doesn't process as expected. Thanks, Kelly
Adding condition to jQuery Form Checkbox
I have a jQuery form consisting of checkboxes where the boxes can have values, Name [X] or [Y] or [Z] Class [1] or [2] or [3] The main script goes like this, <script> $(document).ready(function(){ function displayVals() { var NameValue = $("#Name").val(); var ClassValue = $("#Class").val(); var AllValue = "?q=Name_s%3A" + NameValue + "|Class_s:" + ClassValue; var finderValue= "[A website Address]"+AllValue; $("#DetailFinderForm").attr("action",
How to check if viewport changed
Hello! I am looking for an event which is fired when the viewport of a mobile webpage changes during scrolling this page. Has anyone an idea? Thanks in advance Greetings
After downloading slider.....? Dreamweaver cs6 what do I do?!
I have dreamweaver cs6. I am trying to implement a simple slider into my webpage and would like to use jquery. I have installed from the download link on the homepage. My question is: When I chose a slider to use I download it, save it. Then when I go to input the files into my .js and .css folders I'm completely lost as to which files need to be put into my own. One slider I downloaded had 4 .js files and 4 .css files. This just can't be right. Apologize for being a n00b with javascript but I
Can't find documentation of "Events" of jQuery UI
I was trying to find the documentation of "Events" of jQuery UI Datepicker on its API page, but had no luck. Where can I find the documentation of "Events"?
[jQuery] $.post issue
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.2900.2963" name=GENERATOR></HEAD> <BODY> <DIV><FONT face=Arial size=2><SPAN class=819104617-21092006>I am new to jQuery and I'm having issues calling a webservice. Here is my code:</SPAN></FONT></DIV> <DIV><FONT face=Arial size=2><SPAN class=819104617-21092006></SPAN></FONT> </DIV><FONT face=Arial size=2><!DOCTYPE html PUBLIC
Accordion not working well when i save the code
Hello guys, I want to use the accordion to my website http://www.kampungosing.com/p/rooms.html I already insert all the code, and i preview the result was fine. The problem came when i already save the code, it was not showed up as the preview result. Any advice in order to make it working normally? or is it any relate to the browser i use ? i use chrome anyway Cheers Ganda
button inside jquery blockui on usercontrol ie. ascx
Hi, i am trying to implement somewhat similar to the first example on this linkhttp://malsup.com/jquery/block/#demos can anyone help me to capture server side event of "submit" button? Please note i am implementing this on usercontrol ie. ascx page Thanks in advance.
Can I set startTime and endTime to datetimepicker?
I have this $('#Date').datetimepicker({ controlType: 'select', timeFormat: 'HH:mm', showAnim: 'slideDown', minDate: "+7D", hourMin: "15" hourMax: "20" }); but i want to set startTime something like"15:30" and endTime "20:35". I can't use minuteMax:"35" because then I won't be able to select for example "15:40. Thank you
.toPrecision not working with pixels
I am trying to round a number to integer I get a width --> var $h2 = $('.span2').width(); I try -> $texH = ($h3 / 5).toPrecision(1); or -> $texH = ($h3 / 5).toFixed(); but nothing works I get 69.05638638638637px and I want 69px thanks for helping
jQuery datepicker calculating age and displaying it on label
Hi, I know how to calculate the age from DOB and have done the same. But am unable to display the age on the label. Pl help and suggest me a way out in doing so?
autocomplete with params
Hello! I have a script that works with autocomplete. But I need to add another parameter to myurl when selecting from the dropdown menu. Can anyone help? <from> <select name="country" id="country" class="btn-country-select"> <option value="0"></option> <option value="1" >Austria</option> <option value="2" >Zambia</option> </select> <input type="text" name="searchStr" id="searchStr"> </form> $().ready(function() { $("#searchStr").autocomplete("myurl", { width: 218, matchContains: true,
Jquery post issue.
Hi; This should work! onkeyup I want it to load that page in the div but it doesn't What did I miss? Its here function reload_deals() { $.post('<?php echo base_url("home");?>', { search: document.search_form.category_search.value},function(output){$('#deals_box').html(output).show();}); } Thanks
Dynamically display buttons in dialog
Hello, I would like to use the same dialog function to display alerts and confirm dialogs. Would I be able to have an if statement in the dialog code so I can display different buttons depending upon what parameters were passed into the function? Something like: var alerter = function (passit, confirmationBox) { $("#dialog-default > p").text(String(passit)); $("#dialog-default").dialog({ open: function () { $(".ui-state-focus").blur();
ONLY Visible Div form elements will get submitted
It shows and hide when selection is made either City or State. Right now, when I hit submit button, both values (city and state) are carry to the next page. I only want one to be moved over when it's visible on the page but don't know how to do it, can you pls help? thanks function show_hide(show, hide) { document.getElementById(show).style.display="block"; document.getElementById(hide).style.display="none"; } <form action="next.cfm"> <input type="radio" name="select" value="1" onClick="show_hide('city',
Next Page