JQuery/Javascript RDF plugin
Any ideas about JQuery plugins/Javascript libraries for working with RDF? ...
Any ideas about JQuery plugins/Javascript libraries for working with RDF? ...
Hi, Seems like got stuck in the cross domain issue. Just trying to get the XML response from the servlet call through POST method: $.ajax({ type: "POST", url: "http://10.210.221.43:9081/shopsfinder/servlet/ ShopsFinderStoreServlet" //THIS DOESN'T //url: "../ShopsFinderStoreServlet" //IT ...
Hello, I was wondering if anyone has any examples or tutorials on how I can create a search area like the one on BuySellAds.com to the left of this page. I like the sliders and how you can select a category and it will automatically update. Also, can this be done with jQuery? thanks for any help/info. ...
I have this structure <p class="descr"> <span>something here</span> <img src="test" /> </p> <p class="descr"> <span>somthing else here</span> <img src="test2" /> <img src="test3" /> </p> so there can be more than one image inside of a <p> element. What i need to do is loop through each <p> and then each <img> inside of it...
I'm looking to get acquainted with jQuery a little better than I already am. I'm not looking to necessarily replace MooTools, but rather for a basic difference guide between the two, not dissimilar to the Ruby From Other Languages guides. Can you recommend any articles, books, or other sources of information for this purpose? ...
<p>First Name <input type="text" name="first_name"> Last Name <input type="text" name="last_name"></p> <input type="hidden" name="screen_name" value="first_name + last_name"> How do I take what was typed into first_name and last_name fields and add them together to the screen_name so when the field is submitted, it inputs the values ap...
$('#div1').children('div:last').css('border-bottom', ''); $('#div2').focus(); I am using above and it works fine with ie but not with chrome & safari. I haven't tried FF. 1st line is to find all child divs and remove underline from last one. 2nd one is to focus on div2 on some action. What could be wrong in here? Or do i need any spe...
I have a datepicker with changeyear: true. The 'year' drop down displays the title as 2009, then instead of the next year below the title being 2008, 2007, 2006 and so on it starts at 1999 and counts upwards. I can't seem to find an easy solution to reverse this order? ...
i have this hmtl: <input type="text" name="textField" /> <input type="submit" value="send" /> how can i do something like this: -when the text field is empty the submit should be disabled(disabled="disabled") -when something is typed in the text field to remove the disabled attribute -if the text field becomes empty again(the text is...
I am passing viewdata into my aspx page like so: //Controller List<user> userList = Data.GetAllUsersForCompany(companyId); List<SelectListItem> dropDownList = FormatUserList(userList); ViewData["UserList"] = userList; ViewData["FormattedUserList"] = dropDownList; return View(); I am populating a drop down with the name of a user, whic...
Dear all, I need to add paging for my users view page, i got all the datas using Json to show in the table..i need to add paging and and also i can able to change number of users to show in a particular page. any simple Jquery plugin or source code will be very much helpful to me. thanks in advance, K ...
I am trying to get and pass a rel attr to tell which tab to select in a nyro pop up function. function guestlist (selector) { $(selector).nyroModal({ hideContent: newHide, endShowContent: function () { var getNumbers = $(selector).attr('rel'); alert(getNumbers); specialwater(); ...
I wrote a little in page script to relocate a small box containing the sub navigation via jQuery. While it works in all (semi)-modern browser, it doesnt work in IE 7 and below, although other jQuery Code works. for IE 6 and 7 Can anybody tell me, what IE doesn't like in this code? <script type="text/javascript"> /* <![CDATA[ */ ...
Hi Guys I have a table row with 5 cells. I want to click an image in the last cell, and get the text value from a radio button in the first cell. Can somebody tell me jQuery command I need? I'm currently doing it like : // when the image is clicked alert($(this)[0].parentElement.parentElement.children[0].childNodes[1].innerText); ...
i want to implement Jquery tooltip on my ESRI toolbar. but i am not able to access toolbar component from javascript. Can anyone suggest custom tool tip for Toolbar. also can anyone suggest writing better Map help file bettern than it comes with out of the box ...
I have an HTML page that uses the JSONP Plugin to gracefully handle errors in my JSONP call. My problem is quite perplexing (and I hope it has a simple, easy "D'Oh!" solution :)). When the .js file is in the same directory as the HTML page and is loaded like this: <script type="text/javascript" src="jquery.jsonp.min.js"></script> All ...
i had an html page that run some jQuery scripts and that works ok. but once i use the same scripts in php page then tries to run it using local server (xampp) it doesnt working .. then i tried to upload files on linux server over the internet but neither the html nor the php pages worked right ! so did i miss something ? is there some ...
I'm wondering if there is a good library or script out there that trivializes drag and drop functionality for table rows in Javascript? Really the only requirement I have is that rows must be draggable within the table itself, but also to other tables on the page. I'm not too familiar with JQuery or Javascript itself, so I'd like to try ...
Hi friends, I've discovered flot for jquery for drawing nice graphs. But I can't parse the data I want to represent from MYSQL. It's driving me crazy because I get this error: uncaught exception: Invalid dimensions for plot, width = 0, height = 0 Is there any way to put MYSQL data into flot apart from this?: php part: <?php includ...
I have , `<span class="icon">►</span>` in Jquery I did, $(this).html('▼'); and tried $(this).replaceWith('▼'); too. but it displays '▼' instead of converting it to a html icon like ▼. thanks ...