datepicker within php page
hello, hope someone can help me out here I am trying to get the kevin luck datepicker (if you google, it's at the top off the list) too work I have made simple php test page the js sourcefiles are in the same folder as the page What am Y missing?? the code in the php page: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
[jQuery] bgiframe for PDF overlay not working
I have a PDF file that appears in an IFRAME. I use the ddsmoothmenu but the dropdowns will not overlay the PDF. I read I could use the bgiframe plugin to solve the problem, but so far have been unsuccessful…the PDF always appears on top. Does anyone have any experience using bgiframe to layer on top of a PDF in an IFRAME? Here is my demo code based on the sample files: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html debug="true"> <head> <meta http-equiv="Content-type"
[jQuery] Problem w/ Time picker plugin
Hello, I'm implementing this Jquery time picker: (http://plugins.jquery.com/ project/pttimeselect) and It works perfectly until I try to add a php var to the value of the input tag. Here's my form code: [code] <form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post"> <div id="time_of_day_select"> <label for="time_of_day-field" >Time of Day</label> <input name="time_of_day" id="time_of_day_select" value="<?php echo $presc_data['time_of_day'] ?>" /> </div> <input type="submit" name="submit"
[jQuery] unsubscribe
Please unsubscribe from this group.
[jQuery] Using .get to call perl script - Does not seem to be working
I want a cgi script to run whenever a link is clicked on. I thought I had it working but the cgi script does not seem to be getting called. Below is code I am using. When using the $.get command I had to make it $(document).get for it to work properly. Any help would be greatly appreciated. Thanks, David $(function(){ $("#hnews a").click(function(){ var modiDate = new Date(); var monthName = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September",
[jQuery] Placing text from a drop down box
I have a dropdown box that when a value is selected changes and '&' in the text to & amp ; http://www.nabble.com/file/p23316800/dropdown1.png http://www.nabble.com/file/p23316800/dropdown2.png <select class="frmSelect frmSelectJS" name=""> <option value="University name">University name</option> etc I'm trying to find a way of replacing the '&' with an '&' but i can't find a way of targeting and then changing the & amp ; . I've tried a few things but i'm still a bit of a novice at jquery so any
[jQuery] Placing text from a drop down box
I have a dropdown box that when a value is selected changes and '&' in the text to & amp ; http://www.nabble.com/file/p23316800/dropdown1.png http://www.nabble.com/file/p23316800/dropdown2.png <select class="frmSelect frmSelectJS" name=""> <option value="University name">University name</option> etc I'm trying to find a way of replacing the '&' with an '&' but i can't find a way of targeting and then changing the & amp ; . I've tried a few things but i'm still a bit of a novice at jquery so any
[jQuery] Problems when use Jquery and my js code together
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 BELOW//////////////////////// function ddajaxtabs(tabinterfaceid, contentdivid){ this.tabinterfaceid=tabinterfaceid //ID of Tab Menu main container this.tabs=document.getElementById(tabinterfaceid).getElementsByTagName
[jQuery] new version of loopedSlider is out! Looking for feed back
Just released a new version of loopedSlider and am looking for some feedback. loopedSlider is a plugin made for jQuery that solves a simple problem, the looping of slide content. It was created to be easy to implement, smooth and most of all end the "content rewind" that most other content sliders suffer from. New in version 0.5 Re-coded from the ground up Even easier to implement Use DIVs, LIs or ? Smoother animation Container click for next feature And the most requested feature, auto interval
re[jQuery] lacing text from a drop down box
I have a dropdown box that when a value is selected changes and '&' in the text to & amp ; http://www.nabble.com/file/p23312654/dropdown1.png http://www.nabble.com/file/p23312654/dropdown2.png <select class="frmSelect frmSelectJS" name=""> <option value="University name">University name</option> etc I'm trying to find a way of replacing the '&' with an '&' but i can't find a way of targeting and then changing the & amp ; . I've tried a few things but i'm still a bit of a novice at jquery so any
[jQuery] Trying to use UI accordion to create menu with event: click but still enable links on child link items
I did also post this in the UI group... I have a simple two-level menu utilizing the accordion and want to change from event:mouseover to click as the trigger to open the drawers. The problem Im having is that this change converts ALL links in the menu, even children, to return:false and all links are disabled. I understand that the main level links cannot do 2 things, but can re-enable the children links? I investigated the navigation option and navigationFilter but cant make sense of it- is this
[jQuery] SuperFish menu and the z-index property.
Hi, I am using a Superfish menu in my Joomla web site. Works well enough with my customisations. The problem is I use a javascript Slideshow just below the menu. This slideshow uses both the z-index and opacity property to fade images ontop of one another. In IE7, the superfish's submenu pops below the slideshow's image. I can set the submenu's z-index to 99 to no avail. It works wonder on firefox, chrome, safari though. Even when the z- index property is not set. If I replace my slideshow by a static
Problems with Body/HTML Background Updating
Hi, I'm new here, looking for some help. Here is the problem I'm having, hopefully someone can help. I have a background color set on my body: body{ background-color:#000000; } When using JQuery to update a section it extends the window (adds more content), it adds scrollbars yet the background does not update, meaning it just shows white below. I have tried to update the CSS of the body once the .ajax function has finished, however it still isn't working. does anyone have any idea on how to fix
[jQuery] why is :first-child selecting sub elements?
Hello all, I have a lay out like so <div id="childtest_toprow"> <div id="subtest_1"> <div id="subtest_1_1"></div> <div id="subtest_1_2"></div> </div> </div> <div id="subtest_2"> </div> </div> I want to select the first child of "childtest_toprow" which is "subtest_1" when i do $("div[id ^= 'childtest_' ] :nth-child(1)").each(function() { alert( $(this).attr("id") ) }); I get "subtest_1" AND "subest_1_1" what am I
jQuery with JSF (Woodstock)
Hi all, I am using some jQuery stuff together with Woodstock UI components. Basically I have some auto validation text field, which is making an AJAX call to checkif user has entered valid login, e.g. <webuijsf:textField id="login" columns="30" binding="#{app$users$Users.login}" autoValidate="true" validatorExpression="#{app$users$Users.checkLogin}" notify="Users:formUsers:alertUser" /> So when user enters some value and leaves the text box it makes an AJAX call to the server to validate the value.
[jQuery] Your download is corrupted
I downloaded your Superfish file, and it didn't work, which caused a lot of confusion and I've wasted an entire day trying to find some menu system that will actually work... Then I tried installing your system again. And this time it installed. I'm not sure which one is corrupted but it caused a whole lot of problems. I know it's not your fault if a file is bad but I'm really *bothered* at the moment, and I left a bad review over there at the Extensions so you may have to deal with them if you want
[jQuery] JQuery Script doubling div
Hello In a website that I am developing, I have a tab navigation system and I tried to dynamic load the #content of each page in the #content div of the main page withe the next script and next html: $(document).ready(function() { $('#nav a').click(function(event) { $('#content').load($(this).attr("href") + ' #content').fadeIn (1000); event.preventDefault(); }); }); <!-- Navigation Begin ================ --> <div id="nav"> <ul> <li><a href="index.html" title="presentation"><span>Presentación</span></a></li>
[jQuery] Cant get Tablesorter working with examples under Jquery 1.2.3
Hi I'm trying to get tablesorter (http://tablesorter.com/docs/ index.html) working but pasting the example table, when the given document.ready() function fires, I get a javascript error saying that $ ("myTable").tablesorter(); is not a function. Can anyone confirm this works with Jquery 1.2.3? Suggestions?
[jQuery] [autocomplete] hideResults() and hideResultsNow() (FAO Jörn Zaefferer)
Hi, This is really directed at Jörn, who wrote this plugin. I just want to know what the reasoning was behind having a hideResults() function that uses a timeout to call hideResultsNow() 200ms later. Would it be safe to use hideResultsNow() instead when handling the blur event? Regards, James
Help please. Span array with id. how to get value?
codehtml <span id="jprc55[]" name="jprc55[]">1.00000</span> <span id="jprc55[]" name="jprc55[]">2.00000</span> <input type="button" value="Add Product Job" onclick="testget();" /> script function testget() { var jjj = ""; jjj = $('span[id="jprc55[]"]')[0].html(); alert(jjj); } what goes wrong?.... please anybody can help me with this? thanx very much before..
[jQuery] Jquery Function Not Working In Opera
I have the following code: <code><pre>var depth = 2; var name = 'category' + depth; var html = $('<div class="indent">' + "\n<p>\n" + '<label for="' + name + '">Sub Category:</label> ' + '<select id="' + name + '" name="' + name + '">' + "\n" + '<option value="none">Select a sub category</option>' + "\n" + '<option value="0">Add new sub category</option>'
Row coloring based on specific column value
I'm new to Jquery and was wondering if it is possible to do give a table row a color based on the value of a particular column / cell value. E.g. if the cell content of a column called "Status" is "Open", the complete table row background color should be set to red. Thanks
table row cloning
Any one please suggest how to clone a row when column had rowspan attribute. i am getting problem to clone a row when a column had rowspan attribute
Swapping text DIVs in a table
Hello I have a table with links down the left and a simple javascript innerHTML change which displays the content on the right. You can see it here: http://www.scotlawcom.gov.uk/html/jquerytest.php It's nothing special and I think it would be pleasing if the paragraphs faded. I've seen plenty of jQuery implementations which do things very similar to this, but nothing that does exactly this. I'm guessing it's pretty simple. As you can see from the page it already loads jquery-c.js (for some tooltips
Need some advice on application
Can anyone point me in the direction of an application that can replicate the functionality available at [bridalcanvas . com/canvas/create]. It believe the site is using jquery but I'm not sure if it is an app that is available for purchase. If this will need to be coded on a one off basis could someone recommend a developer or two?
Button with hold effect like Gmail
What is an easy way (plugin?) to create a DIV/INPUT button like Gmail has? When you hold it (mousedown), the button is pushed in (changing image). How to easily do that? I guess it is not something new. Thanks
jquery email validate
hello everybody i have a litte problem i am using this plugin for my validate of the inputs http://bassistance.de/jquery-plugins/jq ... alidation/ everything is working but i have one big problem when i insert a email and it is wrong... then the text "enter a validate email pleas" is coming... but i want that the check starts when i press the submit button not on live... sry for the bad english
Animation stops working after first click
Hi guys, I have the following code $('input.productSubmitInput').click(function() { $('#login-info') .animate( { backgroundColor:"#7AFB73" }, 500 ) .animate( { backgroundColor:"#F9F9F9" }, 400 ); }); I click on an input button and I animate the background colour of a seperate div. I have multiple input buttons on the page. It works fine, but only ONCE for each button click. Any idea what I'm doing wrong?
Auto tabbing from a text field to checkbox
Hi , I'm trying to do autotab from a textfield to a checkbox . but it is not working . Here is my code . please help me . <html> <head> <title>Check Box</title> <script language="javascript" src="jquery.min.js" type="text/javascript"></script> <script language="javascript" scr="jquery.autotab.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function(){ $('#gradYearFrom').autotab({ target: 'gradYearTo', format: 'numeric' }); $('#gradYearTo').autotab({format:
[Dialog] Don't want open more than once
Hi all ! I'm a n0ob of jQuery but I want put a dialog widget ! I can open the dialog box but when I close it, I can't open again... :'( This is my code : At a bottom of index.php : <html> <!--- [head : jquery css] ---> <body> <p> Link : <span class="lanceur_dialog" title="title">Click<span> </p> <div id="jqueryui_dialog">okokokok<br/>okok</div> <!--- [jquery link] ---> <script type="text/javascript"> $(document).ready(function(){
[jQuery] cluetip IE8 very slow adding to table rows
Hi there, I've recently been using cluetip on a datable of about 400 rows. Recently I tested this against IE8 and found it very very slow. Doing simply the following: $(document).ready(function() { $(".user").each(function(i) { $(this).cluetip(); } }); Basically for each row in my table (400 rows) it would attach the cluetip to it. In IE8 it would freeze the browser for a good minute, if I pushed the compatibility mode button to run in IE7 mode it worked as expected. In all other browsers it worked
[jQuery] line breaks in alert boxes
Hi, Just started getting into jQuery yesterday. Question: How can I place line breaks in alert box text? [code] var message = ""; message += "Your Ticket# is: " + $(xml).find("rid").text() + " Please make a note of it."; alert(message); [/code] The part, " Please make a note of it." I want on a new line.The usual \n does not help in this case. Thanks for any help. Chris
"invalid label" error in FF from ajax jsonp call
Must be something fundamental i'm missing. I've tried this with a relatively stripped down ajax request (below -- the "success" callback empty tho it fails with or without the success callback, so it's happening b4 success callback is called) and with getJSON. Same error. $.ajax({ url:temp_HOST + API, data:{ id:reqId, url:url }, dataType:"jsonp", type: 'GET', timeout: 10000, success:function(resultdata){} }); It successfully makes the request to my api. I used fiddler to confirm that the api is returning
[jQuery] Jquery mouse events
Hi there, I am creating a jquery content scroller plug in. ( with custom scroll bars ) I have all the working with up and down arrows which animate the scrolling content. works great ! I am fairly new to jquery so I was wondering if someone could help me out with the actual scrollbar. What I'm having trouble with is dragging the seeker across the scroll bar. Once I get this I can easily make the scrolling parallel to the content.
[jQuery] jquery cycle plugin conflicts with the fix we use for PNG's in IE6
This is a tough one. Any help, much appreciated. I've been experimenting all day with different ideas toward fixing this, but so far nothing has worked. Please look at this page in IE6: http://www.teamlalala.com/lark/Simplicity%20ie.htm In IE6, you can see a huge gap at the bottom of the page, underneath the footer. We would like to fix this. The problem arises from a conflict between our PNG fix, and our slideshow. This is the script we are using to fix the PNG bug in IE6: http://www.teamlalala.com/lark/img/DD_belatedPNG_0.0.7a-min.js
[jQuery] Retain Form Data
Hi, I am new to JQuery. Just have a couple of questions but first let me tell you that I am planning to have a recipe submission by showing the user by default one input box for each ingredient and direction. If the user wishes to add another ingredient, javascript will create another input box on the fly. What I am about to achieve are: 1.) I need to create an input box on the fly upon clicking an "add another ingredient" button/link or "add another direction" button/link 2.) I need to retrain the
[jQuery] XMLDOM extension plugin for jQuery
I found that appending XML string as XML node will fail in IE, so I wrote a small plugin to solve the problem, here is my post: http://blog.darkthread.net/blogs/darkthreadtw/archive/2009/04/29/jquery-xmlext-plugin.aspx. Feel free to give me some feedback.
[jQuery] full file path from file input
Hi, some of the newer browsers (firefox 3) only make the filename available from a file <input> element, even though the full path is displayed in the text box. anyone know of any techniques to get around this? i've tried using google gears, flash, and considered a java applet, but am having trouble with the first 2 and i don't want to resort to java. the reason i need the full path is because this i'm writing a local application, not uploading files to a server or anything. https://developer.mozilla.org/en/Updating_web_applications_for_Firefox_3#File_upload_fields
[jQuery] Multi rows with jCarousel
I really want to modify jCarousel to multi rows. Can I do this and how? Please advise. Original: << [ITEM] [ITEM] [ITEM] [ITEM] >> Modify: << [ITEM] [ITEM] [ITEM] [ITEM] >> [ITEM] [ITEM] [ITEM] [ITEM]
[jQuery] A troll on jQuery in Linkedin Q&A board
To those who in Linkedin, there a troll discrediting not only jQuery but the practise of using any library: http://www.linkedin.com/answers/technology/information-technology/computers-software/TCH_ITS_CMP/464788-10054134 Quote: "You don't need a generic library, period. Bank it." Funny. :-) -- ____ ____ ____ ____ (stephan paul) Arif Sahari Wibowo /___ /___/ /___/ /___ http://www.arifsaha.com/ ____/ / / / ____/ **** http://www.arifsaha.com/christhasrisen.html
Next Page