Tag: jQuery

  • Code Share

    So I needed a way to have two html select lists. One to show “Available” options and one to show “Selected” options. But the selected options needed to have a checkbox to allow the user to make a “read-only” selected option or a “full access” selected option. Got it? Good.

  • Jersey + Jsonp + jQuery

    At work we are developing an application that required me to create a webservice that could be called from another domain with javascript. Hopefully this will help you do just that. I am using Jersey 1.4 and jQuery 1.4.4. Here is my Jersey java code for the webservice: package com.test; import javax.ws.rs.GET; import javax.ws.rs.Path; import…