Blue Ray Plus - Latest Technology News - Latest published stories in Javascript
1
Ups

JSP Tutorial. Servlet Tutorial. Beginning and Intermediate-Level.

published 94 days, 17 hours, 58 minutes ago posted by adminadmin 94 days, 22 hours, 41 minutes ago
Wednesday, February 13, 2013 11:29:47 AM GMT Wednesday, February 13, 2013 6:45:55 AM GMT
homecontactsitemapTrainingTutorialsBooksConsulting & OutsourcingProgramming ResourcesJobs About the InstructorTraining Course ReviewsIntermediate Servlets & JSPAdvanced Servlets & JSPAjax Training (w/ jQuery, Prototype, HTML5, etc.)GWT TrainingJSF 2.0 & PrimeFaces TrainingSpring TrainingHibernate & JPA TrainingJava Training (Java 7 & 8 Programming)Jakarta Struts Training (Struts Classic & Struts 2)SCWCD TrainingiPhone ProgrammingCustomized On-Site TrainingPublic Course Schedul... (more)
category: Javascript | clicked: 1 | comment | | source: courses.coreservlets.com
tags: jsp
1
Ups

Creating a 'Like' button with jQuery

published 94 days, 17 hours, 58 minutes ago posted by adminadmin 94 days, 22 hours, 21 minutes ago
Wednesday, February 13, 2013 11:29:47 AM GMT Wednesday, February 13, 2013 7:06:49 AM GMT
Here is an example of how to create a simple 'Like' button using jQuery. When the 'Like' button for a record is clicked the number of likes will increment by 1 and the list will be resorted to ensure the most popular records appear first. Show Example When generating the initial page you'll need to ensure the records are sorted by the number of likes in descending order (i.e. the most popular records first). Firstly, here is our list of records. The important thing to note here is that the ID fo... (more)
category: Javascript | clicked: 0 | comment | | source: www.simonbingham.me.uk
tags: Creating a 'Like' button with jQuery
1
Ups

How to create LIKE and UNLIKE button in jquery

published 94 days, 17 hours, 58 minutes ago posted by adminadmin 94 days, 22 hours, 20 minutes ago
Wednesday, February 13, 2013 11:29:47 AM GMT Wednesday, February 13, 2013 7:07:37 AM GMT
up vote1down votefavorite I want to create LIKE and UNLIKE button in jquery, what i did is , | function LikeUnLikeButton() { $(".like-Unlike").click(function (e) { if ($(this).html() == "Like") { $(this).html('Unlike'); } else { $(this).html('Like'); } }); } but it is not working , problem is when i click on LIKE button i can see unlike button and again it's back... (more)
category: Javascript | clicked: 0 | comment | | source: stackoverflow.com
tags: LIKE and UNLIKE button in jquery
1
Ups

Interactive Color Picker

published 94 days, 21 hours, 46 minutes ago posted by adminadmin 95 days, 19 hours, 5 minutes ago
Wednesday, February 13, 2013 7:41:36 AM GMT Tuesday, February 12, 2013 10:22:06 AM GMT
MenuTech.ProLoginRegisterTutorialsBlogsAuthorsWriteLoginRegister← More TutorialsJavascriptHTMLCSS    Michael Kuehl posted 5 years agoK INTERMEDIATE Today, we are going to take a look at how to create an interactive color picker using javascript, css, and html. There are a number of color picker packages out there on the web, but there isn't nearly as much on how to write one yourself and the mechanics behind how it works. Hopefully, after reading this article, you would be ... (more)
category: Javascript | clicked: 1 | comment | | source: tech.pro
tags: Interactive Color Picker
1
Ups

Simulate JavaScript Key Events

published 94 days, 21 hours, 46 minutes ago posted by adminadmin 95 days, 19 hours ago
Wednesday, February 13, 2013 7:41:36 AM GMT Tuesday, February 12, 2013 10:27:43 AM GMT
up vote47down votefavorite12 Is it possible to simulate key press events programatically in JavaScript?javascript-eventsshare|improve this question edited Jul 13 '12 at 5:11Steve 32470 asked Feb 27 '09 at 20:17tan 239135Can you clarify 'simulate'? Is your goal to test your website or is it to enact the onclick, onmousedown, etc functionality of a given link? – Paulo Feb 27 '09 at 20:29 feedback ... (more)
category: Javascript | clicked: 1 | comment | | source: stackoverflow.com
tags: Simulate JavaScript Key Events
1
Ups

Populate list of counties drop down after selecting country

published 94 days, 21 hours, 46 minutes ago posted by adminadmin 95 days, 18 hours, 37 minutes ago
Wednesday, February 13, 2013 7:41:36 AM GMT Tuesday, February 12, 2013 10:49:58 AM GMT
up vote0down votefavorite I have an old old JavaScript code that should allow a user to select a country first to then activate the counties list for that country option. On load the option of the country says ANY and the option to the counties label should say select Choose a country first but it doesn't. Only if a user selects a country first and then going back to select ANY, the select a county first condition appears. I am not good at all with JavaScript, not mention jQuery. How to correct the ex... (more)
category: Javascript | clicked: 1 | comment | | source: stackoverflow.com
tags: Populate list of counties
1
Ups

check all / uncheck all checkboxes using jquery

published 95 days, 17 hours, 28 minutes ago posted by adminadmin 95 days, 21 hours, 51 minutes ago
Tuesday, February 12, 2013 11:59:02 AM GMT Tuesday, February 12, 2013 7:36:21 AM GMT
up vote0down votefavorite So what I wanted to do was create a master checkbox that would select all and uncheck all as well. I found this jquery snipt that worked better than what I had created.$("#checkboxSort").live( 'change', function() { $(".apply-single").attr( 'checked', $( this ).is( ':checked' ) ? 'checked' : '' ); }); The question I have is what exactly is this section saying:$( this ).is( ':checked' ) ? 'checked' : '' I understand that "this" is the ".apply-single" and that it is verify... (more)
category: Javascript | clicked: 1 | comment | | source: stackoverflow.com
tags: Check/Uncheck all checkboxes
1
Ups

How To Check or Uncheck all checkboxes in jQuery

published 95 days, 17 hours, 28 minutes ago posted by adminadmin 95 days, 21 hours, 50 minutes ago
Tuesday, February 12, 2013 11:59:02 AM GMT Tuesday, February 12, 2013 7:37:04 AM GMT
2 Replies This post explains how to set a group of checkboxes to checked or unchecked using jQuery 1.3, by clicking an “All” or “None” button. First, let’s select our group of checkboxes. I’ve seen some fairly complicated jQuery selectors for finding checkboxes on a page, but it seems to me the easiest thing to do is just assign a common class to each one in a group, even if you don’t define the class in your stylesheets. Like this: Emailed Work in Progress Pending client call R-Returned cal... (more)
category: Javascript | clicked: 0 | comment | | source: www.fbloggs.com
tags: Check/Uncheck all checkboxes
1
Ups

How to check/uncheck all checkbox with Jquery

published 95 days, 17 hours, 28 minutes ago posted by adminadmin 95 days, 21 hours, 49 minutes ago
Tuesday, February 12, 2013 11:59:02 AM GMT Tuesday, February 12, 2013 7:38:21 AM GMT
There are a lot of solutions for this, but I found most them did not handle the case where user checked or unchecked all of the child checkboxes and it must automatically checked or unchecked the parent checkbox. so I give the following solution: (more)
category: Javascript | clicked: 0 | comment | | source: geekswithblogs.net
tags: check/uncheck all checkbox with Jquery
1
Ups

javascript -Autocomplete with AJAX

published 137 days, 15 hours, 31 minutes ago posted by adminadmin 137 days, 20 hours, 13 minutes ago
Tuesday, January 01, 2013 1:56:27 PM GMT Tuesday, January 01, 2013 9:14:51 AM GMT
up vote0down votefavorite3 I'm trying to write a JQuery autocomplete script which will call a url via AJAX and update autocomplete results as user enters data into the form. I have my AJAX setup and currently returning JSON. But I don't know how to go about getting the autocomplete function to call it and use the response. I have managed to get the following working, but this is static data, so no good for my task:$("input#name").autocomplete({ source: ["c++", "java", "php", "coldfusion", "java... (more)
category: Javascript | clicked: 0 | comment | | source: stackoverflow.com
tags: javascript -Autocomplete with AJAX
1
Ups

javascript -"select all" check box

published 137 days, 15 hours, 31 minutes ago posted by adminadmin 137 days, 20 hours, 2 minutes ago
Tuesday, January 01, 2013 1:56:27 PM GMT Tuesday, January 01, 2013 9:25:03 AM GMT
up vote20down votefavorite6 I have an HTML page with multiple checkboxes. I need one more checkbox by the name "select all". When I select this checkbox all checkboxes in the HTML page must be selected. How can I do this?javascripthtmlcheckboxselectallshare|improve this question edited Feb 3 '10 at 9:33Peter Mortensen 73062 asked Dec 22 '08 at 13:50user48094 69361427 0% accept rateIf you want to degrade... (more)
category: Javascript | clicked: 0 | comment | | source: stackoverflow.com
tags: javascript -"select all" check box
1
Ups

javascript select all checkboxes in a table

published 137 days, 15 hours, 31 minutes ago posted by adminadmin 137 days, 20 hours, 1 minute ago
Tuesday, January 01, 2013 1:56:27 PM GMT Tuesday, January 01, 2013 9:25:55 AM GMT
up vote1down votefavorite I want to make a page that has a table of various webpages with checkboxes next to each. I want the user to be able to select multiple sites then search the sites using a google bar. I have a table where each cell has a form filled with checkboxes. each cell has a checkall button that checks all the options in that cell. I would like to add a checkbox to select all the options on the page. (yes I could just leave this option out but I kind of want to know how to access all the ... (more)
category: Javascript | clicked: 0 | comment | | source: stackoverflow.com
tags: javascript select all checkboxes in a table
1
Ups

Select all checkboxes

published 137 days, 15 hours, 31 minutes ago posted by adminadmin 137 days, 19 hours, 58 minutes ago
Tuesday, January 01, 2013 1:56:27 PM GMT Tuesday, January 01, 2013 9:29:22 AM GMT
Select check boxes all and unchecks all check boxes, this is example to selecting single check box with multiple checkbox and single check box selects all checkbox buttons. demo Related Posts:JavaScript – Select CheckboxJavaScript – Get Checkbox ValueEnable Disable Radio button Text box in JavaScriptJavascript – Show hide layers in HTMLJavaScript innerHTMLJavaScript – Blink Color Text Font in HTML (more)
category: Javascript | clicked: 0 | comment | | source: www.easywayserver.com
tags: Select all checkboxes
1
Ups

JavaScript to select all or none of the checkboxes

published 137 days, 15 hours, 31 minutes ago posted by adminadmin 137 days, 19 hours, 57 minutes ago
Tuesday, January 01, 2013 1:56:27 PM GMT Tuesday, January 01, 2013 9:30:28 AM GMT
Post navigation← PreviousNext →Posted on by Allen Liu Here is a quick demo of the select all or none JavaScript function that automatically toggles all of your checkboxes in a given form.Demo My favorite programming/scripting language is: Select All | None JavaScript Perl PHP C++ This is the plain HTML of the form:1 2 3 4 5 6 7 8 My favorite programming/scripting language is: Select All | None JavaSc... (more)
category: Javascript | clicked: 0 | comment | | source: www.randomsnippets.com
tags: JavaScript to select all or none of the checkboxes
1
Ups

How Do I Use jQuery Selectors? - ASP.NET Ajax Library

published 264 days, 19 hours, 21 minutes ago posted by raman376raman376 271 days, 15 hours, 14 minutes ago
Monday, August 27, 2012 10:06:40 AM GMT Monday, August 20, 2012 2:13:01 PM GMT
ASP.NETHomeGet StartedDownloadsWeb PagesWeb FormsMVCSolutions FRAMEWORKSWeb PagesWeb FormsMVCTECHNOLOGIESWeb APISingle Page ApplicationAjaxMobilevNEXTASP.NET 4.5ASP.NET MVC 4ASP.NET Web Pages 2More information Get Help:Ask a Question in our Forums|Report a Bug|More Help ResourcesCommunityForums Sign In|JoinHome / AJAX Ajax Control ToolkitDownloadTutorialsFAQContributeAjax Minifier Microsoft Ajax CDNDiscuss (0)HistoryPrintRSS Modified on 2010/09/07 16:10 ... (more)
category: Javascript | clicked: 1 | comment | | source: www.asp.net
tags: jQuery Selectors
1
Ups

How to use regular expressions in JavaScript? | Your Inspiration Web

published 275 days, 22 hours, 17 minutes ago posted by raman376raman376 281 days, 15 hours, 13 minutes ago
Thursday, August 16, 2012 7:10:18 AM GMT Friday, August 10, 2012 2:14:48 PM GMT
JustB |   |  in: Ajax & Javascript, Guides, Web 2 commentsTweet017 After having examined the theoretical basis and syntax of regular expressions, it is important to know how to use this knowledge in productive terms. In fact, although the rules are common, every programming language uses its own routines: in this article we will deal with the implementation of regex in JavaScript and the main methods associated with their manag... (more)
category: Javascript | clicked: 2 | comment | | source: www.yourinspirationweb.com
tags: use regular expressions
1
Ups

The switch statement of JavaScript

published 275 days, 22 hours, 17 minutes ago posted by raman376raman376 284 days, 16 hours, 17 minutes ago
Thursday, August 16, 2012 7:10:18 AM GMT Tuesday, August 07, 2012 1:10:11 PM GMT
HomeJavaScript Tutorials The switch statement of JavaScriptCategories:AllFree JS/ AppletsTutorialsReferencesJavaScript KitFree JavaScriptsJavaScript tutorialsJavaScript ReferenceDOM ReferenceDHTML & CSSWeb DesignFree Java AppletsCSS Quick ReferenceCoding ForumsPartnersCSS DriveJavaScript MenusCSS codes & examplesBuild a websiteSoftware GeekThe switch statement of JavaScript If you work with additional programming languages besides JavaScript (such as C++), then you probably already k... (more)
category: Javascript | clicked: 1 | comment | | source: www.javascriptkit.com
tags: switch statement of JavaScript
1
Ups

JavaScript/Operators - Wikibooks, open books for an open world

published 275 days, 22 hours, 17 minutes ago posted by raman376raman376 284 days, 16 hours, 19 minutes ago
Thursday, August 16, 2012 7:10:18 AM GMT Tuesday, August 07, 2012 1:08:00 PM GMT
Main PageHelpBrowseCookbookWikijuniorFeatured booksRecent changesDonationsRandom book (more)
category: Javascript | clicked: 0 | comment | | source: en.wikibooks.org
tags: JavaScript/Operators
1
Ups

JavaScript - Form Validation

published 284 days, 15 hours, 40 minutes ago posted by raman376raman376 285 days, 23 hours, 50 minutes ago
Tuesday, August 07, 2012 1:47:42 PM GMT Monday, August 06, 2012 5:37:18 AM GMT
WebThis Site   JavaScript BasicsJavascript - HomeJavascript - OverviewJavascript - SyntaxJavascript - EnablingJavascript - PlacementJavascript - VariablesJavascript - OperatorsJavascript - If...ElseJavascript - Switch CaseJavascript - While LoopJavascript - For LoopJavascript - For...inJavascript - Loop ControlJavascript - FunctionsJavascript - EventsJavascript - CookiesJavascript - Page RedirectJavascript - Dialog BoxesJavascript - Void KeywordJavascript - Page Printing   JavaScript ObjectsJavascrip... (more)
category: Javascript | clicked: 2 | comment | | source: www.tutorialspoint.com
tags: JavaScript - Form Validation
1
Ups

Javascript Field Validations -- Client Side Scripting

published 284 days, 15 hours, 40 minutes ago posted by raman376raman376 285 days, 23 hours, 49 minutes ago
Tuesday, August 07, 2012 1:47:42 PM GMT Monday, August 06, 2012 5:38:04 AM GMT
Web Application Development Advice & How To Shining Star Services LLC  Shining Star ServicesArticlesASP.NETASP.net ArticlesASP, DHTML, HTML HTML TutorialAuto-select an Element from a Menu or Scrolling List & Save Keystrokes!ASP Driven DHTML Slider Menus REVISITED One Year Later! Part IIASP Driven DHTML Slider MenusASP Driven HTML OutlinesReusing Code with ASP Include Files and SubroutinesSecurityHacker Query Check.htr IIS Security IssueDatabases, CookiesFunctions to Open a Database Connecti... (more)
category: Javascript | clicked: 2 | comment | | source: www.shiningstar.net
tags: Javascript Field Validations
Previous 1 2 Next