Click here to Skip to main content
15,891,431 members
Home / Discussions / Web Development
   

Web Development

 
QuestionI would like to have your advice to finish a big non-profit social project Pin
Pedro197027-Apr-14 13:09
Pedro197027-Apr-14 13:09 
QuestionRe: I would like to have your advice to finish a big non-profit social project Pin
ZurdoDev28-Apr-14 16:06
professionalZurdoDev28-Apr-14 16:06 
AnswerRe: I would like to have your advice to finish a big non-profit social project Pin
Pedro19701-May-14 12:20
Pedro19701-May-14 12:20 
AnswerRe: I would like to have your advice to finish a big non-profit social project Pin
ZurdoDev1-May-14 15:03
professionalZurdoDev1-May-14 15:03 
GeneralRe: I would like to have your advice to finish a big non-profit social project Pin
Pedro19703-May-14 11:03
Pedro19703-May-14 11:03 
GeneralRe: I would like to have your advice to finish a big non-profit social project Pin
hsuhsutin15-May-14 17:30
hsuhsutin15-May-14 17:30 
QuestionHow to pass parameter from one jQuery tab to another (Solved) Pin
samflex27-Apr-14 6:00
samflex27-Apr-14 6:00 
AnswerRe: How to pass parameter from one jQuery tab to another Pin
Richard Deeming28-Apr-14 2:26
mveRichard Deeming28-Apr-14 2:26 
You need a way to identify the hyperlink:
JavaScript
return "<a target='tab' data-tab-name='#RequestDetails' data-tab-index='2' href='viewdetails.php...

You can then use standard jQuery event handling to load the data into the tab:
JavaScript
$("#example").on("click", "a[target='tab']", function(){
    
    var me = $(this);
    var url = me.attr("href");
    var tabName = me.data("tabName");
    var tabIndex = parseInt(me.data("tabIndex"), 10);
    
    $(tabName).load(url, function(){
        // Activate the tab once the page has loaded:
        $("#tabs").tabs("option", "active", tabIndex);
    });
    
    // Prevent the browser from following the link:
    return false;
});






"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: How to pass parameter from one jQuery tab to another Pin
samflex28-Apr-14 5:15
samflex28-Apr-14 5:15 
GeneralRe: How to pass parameter from one jQuery tab to another Pin
Richard Deeming28-Apr-14 5:21
mveRichard Deeming28-Apr-14 5:21 
GeneralRe: How to pass parameter from one jQuery tab to another Pin
samflex28-Apr-14 5:27
samflex28-Apr-14 5:27 
QuestionJssor SlideShow Default Image Pin
Jassim Rahma25-Apr-14 9:11
Jassim Rahma25-Apr-14 9:11 
Questionhow to paginate like linkedin and facebook? Pin
Jassim Rahma25-Apr-14 6:31
Jassim Rahma25-Apr-14 6:31 
AnswerRe: how to paginate like linkedin and facebook? Pin
onelopez25-Apr-14 6:50
onelopez25-Apr-14 6:50 
QuestionCompany Portal Advice Pin
Clark Kent12323-Apr-14 1:33
professionalClark Kent12323-Apr-14 1:33 
AnswerRe: Company Portal Advice Pin
David Mujica23-Apr-14 3:26
David Mujica23-Apr-14 3:26 
GeneralRe: Company Portal Advice Pin
Clark Kent12323-Apr-14 4:37
professionalClark Kent12323-Apr-14 4:37 
AnswerRe: Company Portal Advice Pin
Kornfeld Eliyahu Peter23-Apr-14 5:31
professionalKornfeld Eliyahu Peter23-Apr-14 5:31 
QuestionGradient background in IE11 Pin
rogerfederer67022-Apr-14 7:18
rogerfederer67022-Apr-14 7:18 
AnswerRe: Gradient background in IE11 Pin
Anurag Gandhi24-Apr-14 5:31
professionalAnurag Gandhi24-Apr-14 5:31 
GeneralRe: Gradient background in IE11 Pin
rogerfederer67024-Apr-14 6:44
rogerfederer67024-Apr-14 6:44 
Questionneed help with php parse error Pin
Izu Great19-Apr-14 2:49
professionalIzu Great19-Apr-14 2:49 
GeneralRe: need help with php parse error Pin
Richard MacCutchan19-Apr-14 6:06
mveRichard MacCutchan19-Apr-14 6:06 
GeneralRe: need help with php parse error Pin
Izu Great19-Apr-14 8:31
professionalIzu Great19-Apr-14 8:31 
GeneralRe: need help with php parse error Pin
Richard MacCutchan19-Apr-14 8:58
mveRichard MacCutchan19-Apr-14 8:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.