Hi Guys, I have the following code. I have a div named data that gets filled in by the data from data.php How can i get it so it ONLY updates that div when the data is different as currently it doesnt. It seems to update even though its the same ( If i have [...]
i need to make a slider for the development http://flexdesigns.co.uk/box/dev/ the four content boxes must automatically scroll along all the different departments and can be manually scrolled by an arrow that will be placed at either end of the boxes how would i go about doing this, would i have to fully learn jQuery , [...]
Hey all can someone recommend to me a really simple jquery file upload plugin or script. I simply want to upload a file from local and save it to my server. Cheers Steve View full post on Tycoon Talk
I have a select drop list. When a option is selected it grabs a corresponding function. In this case, if the the option ‘date range’ or value="dr" – I have the script load two more pages. /date.js /date2.js Which contains the corresponding functions for loading selecting a date from a small menu. Due to where [...]
Hello We are looking to build a new site and are trying to work out whether to use flash or javascript. The site will use drag or drop and so we have been recommended jquery. However we are unsure it is the best thing to use. (full description of main site functionality below) What do [...]
hi there Im trying to set a select option to selected if the value=a given value I have the below but it just isnt happening. $("#distance-type[value='"+data.distance_type+"']").attr(‘selected’, ‘selected’); data.distance_type can either = min or max, My select is <select name="distance-type" id="distance-type"> <option value="0">… Select …</option> <option value="min">Min</option> <option value="max">Max</option> </select> so if data.distance_type=min i want the [...]
This is how I did it. Your mileage may vary. 1) You’ll need to open up the index.php Joomla file in a text editor. The file can be found in whatever theme folder is currently your default. 2) Add these lines of code : Code: <script type="text/javascript" src="http://www.google.com/jsapi"></script> <script type="text/javascript">google.load("jquery", "1.6.1");</script><!–Added Google Library javascript–> immediately [...]
Just stick this in your header. Code: <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script> or if you want the latest version (bit dangerous, I prefer to have manual control over such things but hey that’s just me) Code: <script src="http://code.jquery.com/jquery-latest.js"></script> A full list of available libraries is here: http://code.google.com/apis/librarie…html#Libraries View full post on Tycoon Talk
Trying to customize the menu provide on Dynamic Drive to what I am doing but I am having three problems: 1. My list of tabs is being converted to uppercase, I have looked for a function that would be doing this but cannot find anything. 2. I cannot get the rounded corner images to appear. [...]
I’ve lost count of how many times I’ve googled to find this out only to promptly forget it again. Time to write in down for posterity. Open up Firebug. Click on Console. Enter Code: jQuery.fn.jquery Click Run. You should see Code: >>> jQuery.fn.jquery"1.6.1" or similar on the left of the screen. Hail the mighty Fox! [...]